function exitwindow() {
if(exit)
{
	var count = GetCookie('PopExit_Yes');
    if(count == null) 
	{
	SetCookie('PopExit_Yes','true');
	var width = 400;
    var height = 385;
	var newWindow;
    var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
    var windowFeatures = "width=" + width + ",height=" + height + 
        ",status = 0,resizable = 1,alwaysRaised =1,scrollbars = 1,menubar=1titlebar=0,toolbar=1,left=" + left + ",top=" + top + 
        ",screenX=" + left + ",screenY=" + top;
   newWindow= window.open("Pop.htm", "PopExit", windowFeatures);
   }
}
}