<!--
var ckTemp = document.cookie;

function popup(idx) 
{ 
$helpfile="help/notfound.htm"
if (idx==1){$helpfile="/cow.php"}
	PopUp=window.open($helpfile, 'Central','width=400,height=400,top=50, left=50,resizable=0,scrollbars=yes,menubar=no,status=no,toolbar=no,location=no ');
	PopUp.focus();
}

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('/cow.php','pop1','scrollbars=yes,menubar=no,status=no,toolbar=no,location=no,width=400,height=400,left=50,top=50')
   }
}

//-->