// JavaScript Document
document.writeln(GetDate());
function GetDate(){
	var ThisDay = new Date();
	var s=(ThisDay.getMonth()+1)+"-"+ThisDay.getDate()+"-"+ThisDay.getFullYear();
	return(s);
}
