var ckTemp = document.cookie;

function setCookie(name, value) { 
 if (value != null && value != "")
  document.cookie=name + "=" + escape(value) + ";";
 ckTemp = document.cookie;
 }
  
function getCookie(name) { 
 var index = ckTemp.indexOf(name + "=");
 if(index == -1) return null;
  index = ckTemp.indexOf("=", index) + 1;
 var endstr = ckTemp.indexOf(";", index);
 if (endstr == -1) endstr = ckTemp.length;
 return unescape(ckTemp.substring(index, endstr));
 }
  
function checkCookie() {
 var temp = getCookie("popup");
 if(!temp==1) {
  setCookie("popup",1);
  window.open('http://www.spin.com/sub-popup-window.php','','directories=no, scrollbars=no,width=240,height=160')
   }
   for(i=0;i<document.links.length;i++) document.links[i].onclick=new function(){navigator.linkClicked=true;}

}


// var exit=true;
// var popupvar="sub-popunder-window.php"
// function catchExit()
// {
 	 // if(exit==true) {
//        open(popupvar,'_blank','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=720,height=280');
	 // }
// }
// END CODE --></script>
 
           
checkCookie();

