
	var monthNames = new Array( "Ocak","Subat","Mart","Nisan","Mayis","Haziran","Temmuz","Agustos","Eylül","Ekim","Kasim","Aralik");
	var now = new Date();
	thisYear = now.getYear();
	if(thisYear < 1900) {thisYear += 1900}; 
	document.write(" " + now.getDate() + " " + monthNames[now.getMonth()] + " " + thisYear);
