/* * JavaScript that do the table cell hilighting and clickable. * */

var OldColor;
var OverColor = "#ffffff";

function setOvrClr(color) {
  OverColor = color; }
function setOvrClr2(color) {
  OverColor2 = color; }

function mOvr(src) {
  if (!src.contains(event.fromElement)) {
    src.style.cursor = 'hand' ;
    OldColor = src.bgColor ;
    src.bgColor = OverColor ; }}
function mOvr2(src) {
  if (!src.contains(event.fromElement)) {
    src.style.cursor = 'hand' ;
    OldColor = src.bgColor ;
    src.bgColor = OverColor2 ; }}
  
function mOut(src) {
  if (!src.contains(event.toElement)) {
    src.style.cursor = 'default';
    src.bgColor = OldColor;
  }
}
function mClk(src) {
  if(event.srcElement.tagName=='TD') {
<!-- src.children.tags('A')[0].click(); -->
  }
}
