function startClock() {
	timeRemaining();
}
function string(number) {
	var tempnum = Math.round(number)+" ";
	tempnum = tempnum.substring(0,tempnum.length-1);

	if (tempnum.length >3) {
		tempnum = tempnum.substring(0,tempnum.length-3) + " " + tempnum.substring(tempnum.length-3, 99);
	}
	if (tempnum.length >7) {
		tempnum = tempnum.substring(0,tempnum.length-7) + " " + tempnum.substring(tempnum.length-7, 99);
	}
	if (tempnum.length >11) {
		tempnum = tempnum.substring(0,tempnum.length-11) + " " + tempnum.substring(tempnum.length-11, 99);
	}

	return tempnum;
}


function timeRemaining() {
	var now = new Date();
	var newyears = new Date("October 1, 2005");

	var currentPop;

	var secsSince = Math.round(now.getTime() - newyears.getTime())/1000;


	var utcDistance = string(secsSince * 91 + 22958208000);
	var utcWeight = string((secsSince) * 11.71 + 8126458500);
	var utcEconom = string((secsSince) * 0.025 + 27751680);
	var utcConsult = string((secsSince) * 0.0025+ 2920000);
	var utcClients = string((secsSince) * 0.00006 + 17355);


	document.getElementById('utcdistance').innerHTML = utcDistance;
	document.getElementById('utcweight').innerHTML = utcWeight;
	document.getElementById('utceconom').innerHTML = utcEconom;
	document.getElementById('utcconsult').innerHTML = utcConsult;
	document.getElementById('utcclients').innerHTML = utcClients;

	setTimeout("timeRemaining()", 200);
}
