
function getDate(Country){

	var mydate=new Date()
	
	var this_year=mydate.getYear()

	if (this_year<2000)
		this_year=1900 + this_year
	
	var this_month=mydate.getMonth()
	var this_date=mydate.getDate()

	if (this_date<10)
		this_date=""+this_date

	var montharray=new Array("Ιανουαρίου","Φεβρουαρίου","Μαρτίου","Απριλίου","Μαΐου","Ιουνίου","Ιουλίου","Αυγούστου","Σεπτεμβρίου","Οκτωβρίου","Νοεμβρίου","Δεκεμβρίου")
//country_identifier

	document.write( this_date + " " + montharray[this_month] + ", " + this_year + "");
}

