
function rollOver(src,clrOver){ 
  if (!src.contains(event.fromElement)){ 
    src.style.cursor = 'hand'; src.bgColor = clrOver;
  } 
} 

function rollOut(src,clrIn){ 
  if (!src.contains(event.toElement)){ 
    src.style.cursor = 'default'; 
    src.bgColor = clrIn; 
  } 
} 
 
function mousePress(src){ 
  if(event.srcElement.tagName=='TD'){ 
    src.children.tags('A')[0].click(); 
  } 
} 










