function show2(src,FileName) { 
  if (!src.contains(event.fromElement)) { 
    var s2 = window.open(FileName,"MainWin","");
    s2.window.focus();
  }
}
function showWin(src,FileName) { 
  if (!src.contains(event.fromElement)) { 
    var Temp = "toolbar=no,scrollbars=yes,width=550,height=400,left="+(window.screen.width-550)/2+",top="+(window.screen.height-400)/2;
    var msg1 = window.open(FileName,"NewWin",Temp);
    msg1.window.focus();
  }
}
function mOvr(src) { 
  if (!src.contains(event.fromElement)) { 
    src.style.cursor = 'hand';
    src.style.color = 'blue';
  }
}
function mOut(src) { 
    src.style.cursor = 'default';
    src.style.color = 'black';
}
