var cookie="q5RtF4R5";
var exit=true;
var filename='http://www.getfound.com/bin/gethtmlcustom.asp?affid=781&popid=50146';
var popup;
var height=400;
var width=800;
var left=0;
var top=0;

function exitpop(){
	if(exit) {
		if (getcookie(cookie) == ""){
			popup = window.open(filename, "", "height="+height+",width="+width+",top="+top+",left="+left+",location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no,directories=no");
			setcookie();
		}
	}
}

function getcookie(cookieName) {
	var id = cookieName + "=";
	var cookievalue = "";
	if (document.cookie.length > 0) {
		offset = document.cookie.indexOf(id);
		if (offset != -1) {
			cookievalue = "x";
		}
	}
	return cookievalue;
}

function setcookie () {
	var today = new Date();
	var expdate = new Date(today.getTime() + 1 * 24 * 60 * 60 * 1000);
	document.cookie = cookie + "=" + escape ("done")+ ";expires=" + expdate.toGMTString();
}

document.onunload=exitpop;
window.onunload=exitpop;
