<!--
//Go to the specified link
function OpenLink(HLink){ 
	window.open(HLink,'_self');
}
//Change cell color to yellow
function CellHighlight(Cell){
	//Cell.style.background="#3399FF"  //light blue
	Cell.style.background="#FFFF00"  //yellow
	//Cell.style.background="#0054A6"  //web blue
}
//Reset cell color to white
function CellReset(Cell){
	Cell.style.background="#FFFFFF" //white
	//Cell.style.background="#CCCCCC" //light gray
	//Cell.style.background="#FFFF00"   //yellow
}
//Change cell background picture to the highlighted image
picRollover = new Image(100,25); 	//Preload image for later
picRollover.src="../Images/Frames/Road_Button_Highlight.gif"; 
function CellImageSwap(Cell){
	Cell.style.backgroundImage="url('"+"../Images/Frames/Road_Button_Highlight.gif"+"')";
}
//Reset cell background picture to the normal image
function CellImageReset(Cell){
	Cell.style.backgroundImage="url('"+"../Images/Frames/RoadNoLine.gif"+"')";
}
//-->
