// determines if exit pop-up appears
var doPop = 1;

// PopUp Newsletter Window
function NLpopup()
{
    if (doPop == 1)
    {
    var popupwindow = window.open("/b/newsletter_signup.html","exitPop","toolbar=no,location=no,scrollbars=yes,resizable=no,width=640,height=480,left=500,top=200");
    }
}


// To open content in a custom sized windows

function runWizard(w,h,content)
{
	NewWindow = window.open(content,null,"height="+h+",width="+w+",status=no,toolbar=no,resizable=yes,menubar=no,location=no,scrollbars=yes");
}

