////////////////////////////////////////////////
//update the html text with the date and time
function updateTime()
{
	var dateObj = findObj("date");
	
	if (dateObj)
	{
		dateObj.innerHTML = getDate();
	}
	
	setTimeout("updateTime();", 60000);
}