// JavaScript Document
var exit=true;
var goto_url = 'http://creampiecuties.com/exit/';

var x = readCookie('RefererExit')
if (x != "1940255") {


   window.onbeforeunload = function () {   
   if(exit==true){	
 	   location.replace(goto_url);   
 	   return "Hold on, don't leave yet! One membership gives you access to 9 exclusive sites! $269.55 value for only $29.95!";
      }
   }
}
function readCookie(name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}

