// JavaScript Document
function mouseOver(src, color) {
 if (!src.contains(event.fromElement)) {
  src.style.cursor = 'hand';
  src.bgColor = color;
  src.color = '#CCCCCC'
 }
}
function mouseOut(src, color) {
 if (!src.contains(event.toElement)) {
  src.style.cursor = 'default';
  src.bgColor = color;
 }
}
function messageWindow(value){
  if(value){
    var width="260", height="260";
    var left = (screen.width/2) - width/2;
    var top = (screen.height/2) - height/2;
    var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
    var msgWindow = window.open("Banner.asp","bnrWindow", styleStr);
  }
}
