var normalColor;
function hilite(id){
if( !document.all ) return false;
// initialize the hilite object
objHilite = eval("document.all." + id);
// get the color of the current table cell
normalColor = objHilite.style.backgroundColor;
// set the color equal to the highlight color
objHilite.style.backgroundColor = '#ffffff';
return true;
}
function restore(id){
// reset the table cell to it's original color
eval("document.all." + id + ".style.backgroundColor = normalColor")
return true;
}