<!-- Begin
var months=new Array(13);
months[1]="Ocak";
months[2]="Şubat";
months[3]="Mart";
months[4]="Nisan";
months[5]="Mayıs";
months[6]="Haziran";
months[7]="Temmuz";
months[8]="Ağustos";
months[9]="Eylül";
months[10]="Ekim";
months[11]="Kasım";
months[12]="Aralık";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)
year = year + 1900;
document.write(" " + lmonth + " ");
document.write(date + ", " + year + " ");
// End -->
