function putTimer()
{
	setInterval("setCascTime()", 1000);
}

function setCascTime()
{
	var now = new Date();
	var hours = now.getHours();
	var minutes = now.getMinutes();
	var seconds = now.getSeconds();
	var day = now.getDate();
	var month = now.getMonth() + 1;
	var year = now.getYear();

	var timeValue = ((day < 10) ? "0" : "") + day;
	timeValue += ((month < 10) ? "/0" : "/") + month;
	timeValue += "/" + year;

	timeValue += ((hours < 10) ? " 0" : " ") + hours;
	timeValue += ((minutes < 10) ? ":0" : ":") + minutes;
	timeValue += ((seconds < 10) ? ":0" : ":") + seconds;

	document.clockform.clockedit.value = timeValue;
}

