function popw(loc,nam,wid,hei,othe) 
{
    if (window.screen)
    {
        x = (screen.availWidth - wid) * 0.5;
        y = (screen.availHeight- hei) * 0.5;
    }
    else
    {
        x = 50;
        y = 50;
    }
    if (othe=='') 
    {
        popupw=window.open(loc,nam,'width='+wid+',height='+hei)
    } 
    else 
    {
        popupw=window.open(loc,nam,'width='+wid+',height='+hei+','+othe)
    }
    popupw.moveTo(x,y);
    l=popupw.focus();
    return popupw 
}

function popBasketStats(CID)
{
    popw('popup.aspx?Element=BasketBall&Action=Contest&ContestID='+CID,'BasketBall',770,550,'scrollbars=yes, resizable=yes')
}

