var exit = ( document.cookie.indexOf("true")<=0 );
winWidth =400;
winheight = 400; 
if (screen){ /*weeds out older browsers who do not understand screen.width/screen.height */
winWidth = screen.availWidth;
winHeight = screen.availHeight-180;
if(navigator.appName.substring(0,1)=="N"){
//This is Netscape
winHeight = screen.availHeight-90
}
if(navigator.appName.substring(0,1)=="I"){
//This is Internet Explorer
winHeight = screen.availHeight-180
}
}
function xitpop()
{
if (exit){
window.open("http://www.listbuilderpro.com/redirect","listbuilderpro","toolbar=yes,location=yes,scrollbars=yes,resizable=yes,status=yes,menubar=yes,width='+winWidth+',height='+winHeight+',left=0,top=0");
}
}