var DayOfWeek = new Array('Pazar','Pazartesi','Sali','Carsamba','Persembe','Cuma','Cumartesi');var MonthName = new Array('Ocak','Subat','Mart','Nisan','Mayis','Haziran','Temmuz','Agustos','Eylül','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>');