// JavaScript Document
function print_todays_date() {
	d = new Date();
	document.write(d.toLocaleDateString());
}