function bigIMG(IMGName)
{	
	var winRef = window.open(IMGName.replace("M.jpg","B.jpg"),'_blank','scrollbars=yes,left=10,right=10,width=550,height=550,resizable=1');	
}

function TDBorder(ID) {
	document.getElementById(ID).style.borderStyle = 'solid';
	document.getElementById(ID).style.borderWidth = '2px';
	document.getElementById(ID).style.borderColor = '#CCCCCC';
}
function TDnoBorder(ID) {
	document.getElementById(ID).style.borderStyle = 'solid';
	document.getElementById(ID).style.borderWidth = '2px';
	document.getElementById(ID).style.borderColor = '#FFFFFF';
}	