<!-- CELL ONMOUSE OVER -->
var tableCell;
function ChangeColor(tableCell, highLight){
if(highLight){

tableCell.style.color = '#996600'; /* MOUSEOVER TEXT COLOR */

tableCell.style.backgroundColor = 'transparent'; /* ON MOUSEOVER */

tableCell.style.cursor = "pointer";

}else{
tableCell.style.color = '#999966'; /* ON MOUSEOUT TEXT COLOR */

tableCell.style.backgroundColor = 'transparent'; /* BACKGROUND ON MOUSEOUT*/
  }
}

function Nav(Url){

document.location.href = Url;
/*  
//if(this.click(Url)){
tableCell.style.color = '#660000';
tableCell.style.backgroundColor = '#FFFFFF';
//  }
*/
}


<!-- CELL ONMOUSE OVER -->
// JavaScript Document