
d = new Date();
u = escape(window.location);

r = encodeURI(document.referrer);
r = r.replace(/&/g,'%26')
r = r.replace(/\"/g,'&quot;')

//q  = '?utc='+date.getTime();
q  = '?utc='+d.getFullYear()+'-'+(d.getMonth()+1)+'-'+d.getDate()+'|'+d.getHours()+':'+d.getMinutes()+':'+d.getSeconds();
q += '&url='+u.replace(/&/g,'%26');
q += '&ref='+r;
q += '&res='+screen.width+'x'+screen.height;
q += '&pdp='+screen.pixelDepth;
q += '&cdp='+screen.colorDepth;
q += '&rnd='+Math.random();

a = window.location.href;
if (1==0 && a.indexOf('foetus.ca') != -1) {
    document.write('<br><font style="color:#000;">'+q+'</font>');
}

document.write('<img src="http://www.webzel.com/counter/hit.php'+q+'" alt="" width="1" height="1">');

