function wiw_startTimer()
{
	timerInterval = setInterval('wiw_tickTimer()',1000);
	return false;
}

function wiw_tickTimer()
{
	if (wiw_counter <= 100)
	{
		var img = new Image();
		img.src = "timer.aspx?id=" + escape(wiw_timer_id) + "&interval=1&type=click&counter=" + escape(wiw_counter);
	}
	wiw_counter++;
}

if (typeof('wiw_timer_id') != 'undefined' && wiw_timer_id != null)
{
	var wiw_counter = 0;
	wiw_startTimer();
}