//<![CDATA[
var count = 0;
var msgstring = "";

function counter() {
	count++; 
	updatecontent(count);

	if (count < 30000) {
 		Id = window.setTimeout("counter()", 2880); 
	} 
}	

function updatecontent(counter) {
	msgstring = count;

	if (document.getElementById) {
		d = document.getElementById("counter");
		d.innerHTML = msgstring;

		d = document.getElementById("counter2");
		d.innerHTML = msgstring;
	}
}

window.onload = counter;
//]]>