// (c) Freelance Digital 2005

if (document.getElementById) {
cid=""  //campaign info goes here
b1=document.location
b2=document.referrer
now=new Date()
b3=(now.getMonth()+1) + "-" +  now.getDate() + "-" + now.getFullYear()
b4=now.getHours()+ ":" + now.getMinutes()+ ":" + now.getSeconds()

if (document.cookie!="") {			//new visitors	
id=document.cookie.split()[0]
z=id + "&b1=" + b1 + "&b2=" + b2 + "&b3=" + b3 + "&b4=" + b4
}
else {
id=Math.floor(Math.random()*10000000)
a1=navigator.userAgent
a2=navigator.platform
a3=navigator.appVersion
a4=navigator.appCodeName
c1=screen.pixelDepth
c2=screen.colorDepth
c3=screen.width
c4=screen.height
z="id=" + id + "&a1=" + a1 + "&a2=" + a2 + "&a3=" + a3 + "&a4=" + a4
z=z + "&b1=" + b1 + "&b2=" + b2 + "&b3=" + b3 + "&b4=" + b4
z=z + "&c1=" + c1 + "&c2=" + c2 + "&c3=" + c3 + "&c4=" + c4
z=z + "&cid=" + cid
expDate=now
expDate.setMonth(expDate.getMonth()+12)
document.cookie="id=" + id + ";expires=" + expDate.toGMTString()
}
document.write("<img src='http://www.freelancedigital.net/logit.aspx?" + z + "' width='1' height='1'>")
}

