// JScript File
var bPopOffer = true;
var iSubmitCount = 0;

function popUp(theURL,Win_Height,Win_Width,Win_Name) 
{         
	window.open(theURL,Win_Name,"toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=452,height=350");
}

function PopOffer(sOffer)
{
    if (!bPopOffer) return; //exit
    bPopOffer = false;
    var ctl = $("body");
    var oldColor = ctl.css('background-color');
    ctl.html('<center><iframe src="' + sOffer + '" scrolling="no" frameborder="0" allowtransparency="true" marginheight="0" marginwidth="0" id="iframe1" height="1150" width="974" style="margin:0 auto"></iframe></center>');
    ctl.css('background', oldColor);
    alert("Don't Leave Yet!\nWe have more options for you!\n\nJust click \'CANCEL\' on the next window!");
    return "\nPress 'CANCEL' to view options that you might\nfind helpful in your weight loss program!";
}
