var chicken_out=true;
$(document).ready(function() {

			
	$("a").click(function() {
			
		chicken_out=false;
			
	
	});
	
	$('form').submit(function() {  
		
		
		chicken_out=false;
		
		
	});
	
	window.onbeforeunload=handleUnload;
			
});


function handleUnload() {
	
	
	if(chicken_out) {
		
		chicken_out=false;
		document.location.href='order.php?cp_code=TRIALSHIP';
		return "**************** \n\r DON'T LEAVE YET! \r\n Order within the next 5 minutes \r\n and receive a $4 Shipping discount! \n\r **************** \n\r CLICK ON CANCEL TO VIEW YOUR DISCOUNT! \r\n****************";
		
	} else {
		
		
	}
	
}
