// JavaScript Document
<!-- Script courtesy of http://www.web-source.net - Your Guide to Professional Web Site Design and Development
function GetCookie(name) {
var arg=name+"=";
var alen=arg.length;
var clen=document.cookie.length;
var i=0;
while (i<clen) {
var j=i+alen;
if (document.cookie.substring(i,j)==arg)
return "here";
i=document.cookie.indexOf(" ",i)+1;
if (i==0) break;
}
return null;
}
var visit=GetCookie("LIDIAS_ITALY");
if (visit==null){
var expire=new Date();
window.name = "thiswin";
newwin=open("http://www.lidiasitaly.com/register", "dispwin",
"width=489,height=413,scrollbars=no,menubar=no");
expire=new Date(expire.getTime()+7776000000);
document.cookie="LIDIAS_ITALY=here; expires="+expire;
}
// -->