bgColor = "white";
txtColor = "black";
bgColor_light = "#000380";
txtColor_light = "white";

function highLight(el, mode)
{
 if(mode==0) // Not Highlighted
 {
 	el.className = "mouseOut";
	el.style.cursor = "default";
 }else if(mode==1) // Highlighted
 {
 	el.className = "mouseOver";	
	el.style.cursor = "hand";
 }
}

function loadPage(id)
{
 	 window.frames[0].location = "openPage.php?id=" + id;
}