function LoadImageP(wurl,wwidth,wheight)
{
   w = wwidth;
   h = wheight;
   var winl = (screen.width - w) / 2;
   var wint = (screen.height - h) / 2;
   winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl;
   d = new Date();
   popupWin = window.open(wurl, d.getHours() + d.getMinutes() + d.getSeconds() , winprops + ",status=no,toolbar=no,menubar=no,location=no,scrollbars=yes");
}

function LoadImage(filename,sizex,sizey)
{
  window.open (filename,'','left=50,top=50,menubar=no,location=no,width='+sizex+',height='+sizey+',scrollbars=yes,resizable=no,status=no'); 
}

function showTip(which,MPY,MPX,parent) {
        var lyr = document.all[which].style;
    lyr.top = 338 + MPY;
    lyr.left= 0 + MPX;
    lyr.visibility = "visible";
    lyr.overflow = 'visible';
}

function hideTip(which) {
    obj = document.all[which];
    obj.style.visibility = "hidden";
}

function my_onmouseover1(obj_td) {
        obj_td.style.backgroundColor= '#9BA8C8';
        obj_td.style.color="#1A2C6F";
}
function my_onmouseout1(obj_td) {
        obj_td.style.backgroundColor= '';
        obj_td.style.color= '';

}
function my_onmouseover2(obj_td) {

        obj_td.style.color="#000000";
}
function my_onmouseout2(obj_td) {

        obj_td.style.color= '';
}


