/*

 JavaScript written by Lindsay D. Grace
 Please do not copy without consent.
	1/15/03
  

*/

function HighLightRow (myrow) {

 	myrow.style.backgroundColor = "FFFFcc";

	return 0;

}

function UndoHighLightRow (myrow) {

	myrow.style.backgroundColor = "FFFFFF";


	return 0;

}


 function ShowMoreInfo (myID) {
 	myID.style.visibility = "visible";
	myID.style.display = "block";
 
 }
 
 function HideMoreInfo (myID) {
 	myID.style.visibility = "hidden";
	myID.style.display = "none"; 
 }
 function MoreInfoClick (myID, myLink) {
 
 	if (myID.style.visibility == "hidden") {
		ShowMoreInfo (myID);
		myLink.innerText = "collapse";
	} else {
		HideMoreInfo (myID);
		myLink.innerText = "expand";
	} 
 }
 function zoomin (imgID) {
//if (window.event.X < 100 ) {
//if (zoomed == false) {	
	imgID.style.zIndex = 1000;
	imgID.style.position = 'relative';
	imgID.width = imgID.width * 1.10;
	imgID.height = imgID.height * 1.1;
	zoomed = true;
//	}
//}	
	

}

function zoomout (imgID) {
//	if (zoomed == true) {
		imgID.style.zIndex = 1;
		imgID.style.position = 'relative';
		imgID.width = imgID.width / 1.1;
		imgID.height = imgID.height / 1.1;
		zoomed = false;
//	}

}
