var hcControlImage;
var hcIsImage = false;
var hcCounter = 0;
var hcTimeout = 5;
var hcSendCounter = 0;
var hcCmd = "startPage";
function hcgo()
{
hcloop();
}

function hcDate()
{
var d = new Date();
return d.getTime();
}

function hcloop()
{
if (hcTimeout < 0)
return;
if (hcCounter == 0) {
hcSendRequest();
hcCounter = (hcCounter + 1) % hcTimeout;
setTimeout('hcloop()', 1000);
}
}


function hcSendRequest()
{
hcSendCounter++;
if (hcSendCounter == 5)
hcIsImage = false;
if (! hcIsImage) {
hcControlImage= new Image;
OnlineImage= new Image;
var u = 'http://hc2.humanclick.com/hc/3031095/?site=3031095' + 
'&cmd=' + hcCmd + 
'&page=' + escape(document.location) + 
'&title=' + escape(document.title) + 
'&referrer=' + escape(document.referrer) + 
'&d=' + hcDate();
hcCmd = "inPage";
hcControlImage.src = u;
OnlineImage.src = '/scripts/online.php?m=1';
hcIsImage = true;
hcSendCounter = 0;
}
}

hcgo();
