<!--
function getDate() { 
	
	var today = new Date();
	var day = today.toLocaleDateString();
	document.writeln(day );
}
//-->