$(document).ready(function(){
	$('a').click(function(){
				leaving = 0;
				return  true;
			});

	$('input[type=submit]').click(function(){
				leaving = 0;
				return  true;
			});
		$('input[type=image]').click(function(){
				leaving = 0;
				return  true;
			});

	$(':button').click(function(){
				leaving = 0;
				return  true;
			});
});

var leaving = 1;
var send_popunder = 1;

function popwindow(showurl, wd, ht) {
	settings = "titlebar=1,toolbar=1,location=1,menubar=1,scrollbars=1,resizable=1,channelmode=0,directories=0,status=1,width=" + wd + ",height=" + ht + ",top=200,left=250";
	window.open(showurl, "test_win1", settings);
		
}

function leaving_site(){
	if(leaving){
		leaving = 0;
		send_popunder = 0;
		parent.location.href = "/cb";
		return ">>>W A I T  B E F O R E  Y O U  G O !<<<\r\n\n********************************************\n       Submit Your Website Right Now\r\n********************************************\r\nWait... Before You Go:\r\n\nIt's important that your website get's submitted\nto all the major search engines. Submitting your\nsite will get you listed in Google, Yahoo, Bing +\nmore than 500 other search engines.\r\n\nSubmitting your website to the search engines\nis the fastest way to start getting visitors.\n\nClick cancel on the button below to submit your \nwebsite to more than 500 search engines.\n\n********************************************\n      Submit Your Website Right Now\r\n********************************************\r\n\nClick Cancel On The Button Below";
		/*
		 
		*/
	
	}
	
}

function non_onbeforeunload_browser(){
	if(leaving && send_popunder){
		//popwindow('coupon.html',800,600);
		
	}
}

window.onbeforeunload = leaving_site;
window.onunload = non_onbeforeunload_browser;
