function hiLite (cellid) {
   if(navigator.userAgent.indexOf("Netscape6") < 1) {
      cellid.style.cursor='hand';
      cellid.style.backgroundColor='#E2E2E2';
   } else { return false; }
}

function restore (cellid) {
   if(navigator.userAgent.indexOf("Netscape6") < 1) {
      cellid.style.cursor='default';
      cellid.style.backgroundColor='#FFFFFF';
   } else { return false; }
}