var DayOfWeek = new Array('Pazar','Pazartesi','Sali','Carşamba','Persembe','Cuma','Cumartesi');
var MonthName = new Array('Ocak','Subat','Mart','Nisan','Mayis','Haziran','Temmuz','Agustos','Eylul','Ekim','Kasim','Aralik');
var theDate = new Date();
document.write('<NOBR>' +theDate.getDate() + ' ' +MonthName[theDate.getMonth()] + ' ' +(theDate.getYear() < 100 ? theDate.getYear() + 1900 : theDate.getYear()) + ', ' +DayOfWeek[theDate.getDay()] +'</NOBR>');
