// cell functions
function mOver(cell){
   if (!cell.contains(event.fromElement))   {
      cell.style.cursor = 'hand';
      cell.bgColor = '#339966';
//      cell.borderColor = '#339966';
      cell.borderColor = '#FFFFFF';
      cell.children.tags('A')[0].style.color='#FFFFFF';
   }
}
function mOut(cell){
   if (!cell.contains(event.toElement))   {
      cell.style.cursor = 'default';
      cell.bgColor = '#66CC99';
      cell.borderColor = '#66CC99';
      cell.children.tags('A')[0].style.color='#000000';
   }
}
function mClick(cell){   if(event.srcElement.tagName=='TD')   {
      cell.children.tags('A')[0].click();
   }
}


function blowIE() {
  for (i in document.links) {
    document.links[i].onfocus = document.links[i].blur;
  }
}

if (document.all) {
  document.onmousedown = blowIE;
}
