// TABLE CELL ROLLOVER EFFECT

function CellColorMouseOver(o) {
	o.style.backgroundColor='#6699CC';
	o.style.cursor='hand';
}

function CellColorMouseOut(o) {
	o.style.backgroundColor='';
}
// -->
		
//TEXT SWAP CODE

	var netscapeFixed = false;
	var hasLoaded =  false;	
	
	infotxt = "Click below for more images";
	
	ie = (document.all);

	function ChangeText(toThis)
	{
	if (hasLoaded){
// NETSCAPE
		if (document.layers)
		{
			var myLayer = document.layers['rollOver'];
		}
// MS EXPLORER
		if (ie)
		{
			document.all.rollOver.innerHTML =toThis;
		}
		}
	}
	
	function init(){
	hasLoaded= true;
	}

	// -->
	
// PRINT

function printPopUp(print) {
if (window.print) {
  printwin=window.open(print,"printwin","toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=1,height=1,left=9999,top=50");
} else{
  window.open(print, "printable", "status=no,scrollbars=yes,toolbar=yes,resizable=yes,menubar=yes,width='600',height='445'","printable");
}
}<!--- hello again --->