// JavaScript Document
var exit=true;
var goto_url = 'http://asian-model-collection.com/join.php';
window.onbeforeunload = function () {   
	if(exit==true){	
		location.replace(goto_url);   
		return "Hold on, don't leave yet! You can access it all right now for only $19.95!";
	}
}

