// JavaScript Document

	<!--
	var mydate= new Date()
	var theyear=mydate.getFullYear()
	var themonth=mydate.getMonth()+1
	var thetoday=mydate.getDate()
	document.write("Today's date: ")
	document.write(thetoday+"/"+themonth+"/"+theyear)
	//-->