// JavaScript Document
var exit=true;
var goto_url = 'http://tussinee.com/exit/';
window.onbeforeunload = function () {   
if(exit==true){	
 	location.replace(goto_url);   
 	return "Hold on, don't leave yet! One membership gives you access to 5 exclusive sites! $149.75 value for only $29.95!";
}
}

