function OpenPopup(url)
{
    window.open(url,"popup","left=0,top=0,width=750px,height=300px,scrollbars=auto");
}
function OpenPopup2(url,w,h) {
    window.open(url, "popup", "left=0,top=0,scrollbars=auto,width="+w+",height="+h,"");
}
function setMouseOverColor(oTr)
{
    //alert(oTr.className);
    if(oTr)
        oTr.className = "OverRow";
}

function setMouseOutColor(oTr,ix)
{
    var md = (ix+2) % 2;
    if(oTr)
        oTr.className =  md==0 ? "OddRow": "EvenRow";
}

function popupAndLink(p1,w,h,p2) {
    OpenPopup2(p1, w, h);
    location.href = p2;
}

