var exit=true;
var temp_url = document.location.href;
var url_pieces = new Array();

var goto_url = 'http://www.perfectostudios.com/images/exit2/exitexternal2_pps.htm';
//document.write( goto_url);

window.onbeforeunload = function () {   
if(exit==true){	
 	location.replace(goto_url);   
 	return "Click CANCEL And Check Out Special Offers From Our Sites!";
}
}
