<!--

function getthedate(){
	//change font size here
	var cdate = Date.parse('now');

	if (document.all) {
		document.all.clock.innerHTML=cdate
	} else if (document.getElementById) {
		document.getElementById("clock").innerHTML=cdate
	} else {
		document.write(cdate)
	}

}

if (!document.all&&!document.getElementById) {
	getthedate()
}

function showdate() {
	if (document.all||document.getElementById) {
		setInterval("getthedate()",1000)
	}
}

//-->
