function cOn(td){
  if(document.getElementById||(document.all && !(document.getElementById))){
  td.style.backgroundColor="#FAFAFA";
  }
}
function cOut(td){
 if(document.getElementById||(document.all && !(document.getElementById))){
 td.style.backgroundColor="#FFFFFF";
 }
}
function showDetails(page, xw,  yw){
         var windowprops = "width="+xw+",height="+yw+",location=no,toolbar=no,menubar=no,scrollbars=no,resizable=no";
                            window.open(page,"",windowprops);
}