﻿function showPopupForTime(delay) {
    if (
        (window.location.href.toLowerCase().indexOf("/prediction/stats.aspx") == -1)
            &&
        (window.location.href.toLowerCase().indexOf("/page.aspx?hiden=1&id=1240") == -1)
                    &&
        (window.location.href.toLowerCase().indexOf("/page.aspx?id=1722") == -1)
                    &&
        (window.location.href.toLowerCase().indexOf("/page.aspx?id=1740") == -1)
                    &&
        (window.location.href.toLowerCase().indexOf("/page.aspx?id=137") == -1)
                    &&
        (window.location.href.toLowerCase().indexOf("/ratings/slices.aspx") == -1)
                    &&
        (window.location.href.toLowerCase().indexOf("/ratings/default.aspx?mode=best") == -1)
                    &&
        (window.location.href.toLowerCase().indexOf("/ratings/default.aspx?mode=ftbl") == -1)
                    &&
        (window.location.href.toLowerCase().indexOf("/worldfantasyfootball/teamcreate.aspx?teamid=271") == -1)
       )
        setTimeout("showPopup()", delay * 1000);
}

function showPopup()
{
    jQuery(function(){
        jQuery.openDOMWindow({ 
            height:"auto", 
            width:550, 
            positionTop:200, 
            positionLeft:200, 
            windowSourceID:'#loginForm', 
            windowPadding:10, 
            //draggable:1, 
            borderSize:0, 
            //windowBGImage:"img/1px_opacity_black.png"
            overlayOpacity:1,
            modal:1
        }); 
    });
}

function closePopup()
{
    jQuery.closeDOMWindow();
}