var months=new Array(13);
months[1]="Ocak";
months[2]="Subat";
months[3]="Mart";
months[4]="Nisan";
months[5]="Mayis";
months[6]="Haziran";
months[7]="Temmuz";
months[8]="Agustos";
months[9]="Eylül";
months[10]="Ekim";
months[11]="Kasim";
months[12]="Aralik";

var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000) // Y2K Fix, Isaac Powell
year = year + 1900; // http://onyx.idbsu.edu/~ipowell
document.write(date + " " + lmonth + " " + year);