window.onload=loadpopup;
function loadpopup()
{

window.open ("/offer.html","offerwindow","menubar=0,resizable=0,width=500,height=350");
return "Click Cancel to know get a FREE Bottle!";

}

window.onbeforeunload = confirmExit;
function confirmExit()
{
if (needToConfirm)
{

window.open ("/offer.html","offerwindow","menubar=0,resizable=0,width=500,height=350");
}

return "Click Cancel to know get a FREE Bottle!";
}

