// JavaScript Document
// Pops up a window when user exits the website

exited = 1; 

function loadpopup(){
	//popupwin = window.open("exit_popup.php","CustomLogo","width=738,height=650,location=yes,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes");
	
	GP_AdvOpenWindow('exit_popup.php','terms','fullscreen=no,toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes',738,650,'center','ignoreLink','',0,'');

}


function popup() { 
	if(exited) {
		loadpopup();
	} 
} 

