function displayCurrentDate()
{
	var monthName = ["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];
	var mydate= new Date();
	var theyear=mydate.getFullYear();
	var themonth=mydate.getMonth();
	var thetoday=mydate.getDate();

	document.write (thetoday+"-"+monthName[themonth]+"-"+theyear);

}

function displayCurrentDateVN()
{
	var mydate= new Date();
	var theyear=mydate.getFullYear();
	var themonth=mydate.getMonth();
	var thetoday=mydate.getDate();

	document.write (thetoday+"/"+(themonth+1)+"/"+theyear);

}