/* JNS */

function mOvr(src,clrOver) {
     if (!src.contains(event.fromElement)) {
     src.style.cursor = 'default';
     src.bgColor = clrOver;
     }
}

function mOut(src,clrIn) {
    if (!src.contains(event.toElement)) {
    src.style.cursor = 'default';
    src.bgColor = clrIn;
    }
}

function mClk(src) {
    if(event.srcElement.tagName=='TD'){
    src.children.tags('A')[0].click();
    }
}

function show( hp, h, v ) {
    x = eval(screen.width);
    y = eval(screen.height);
    d = x / 2;
    t = y / 2;
    mh = h / 2;
    mv = v / 2;
    r = d - mh;
    s = t - mv;
    if ( x <= 800 ) { s = 0; }
    window.open(hp,"","top="+s+",left="+r+",resizable=yes,location=no,toolbar=no,status=no,menubar=no,copyhistory=no,scrollbars=yes,width="+h+",height="+v+"")
}
