
//specify page to pop-under
var popunder="exitpop.html"

//specify popunder window features
//set 1 to enable a particular feature, 0 to disable
var winfeatures="width=520,height=520,toolbar=no,menubar=no,location=no,height=520,width=520, target=_blank"

function loadPopunder() {
if (document.cookie.indexOf('cookie') != -1 ) {}
else {
document.cookie='cookie=1';

window.open(popunder,"",winfeatures)
window.focus()
}
}


