﻿function openPop()
{
    var popShown = ($.cookie) ? $.cookie('pop') : true;
    if (!popShown)
    {
        var popWin = window.open("/pop.htm", "popWin", "status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,scrollbars=0,width=750,height=350");
        if (popWin)
        {
            popWin.moveTo(100, 100);
            popWin.blur();
        }
        window.focus();
        $.cookie('pop', 'true');
    }
}

$(document).ready(function ()
{
    var popShown = ($.cookie) ? $.cookie('pop') : true;
    var isSupportedBrowser = ($.browser && (($.browser.mozilla && $.browser.version >= 4) || $.browser.opera)) ? false : true;
    if (popShown != true && isSupportedBrowser)
    {
        $('a').bind('click', openPop);
        $("input").bind('click', openPop);
    }
});

