       var MonthName = new Array('Ocak','Şubat','Mart','Nisan','Mayıs','Haziran','Temmuz','Ağustos','Eylül',
                          'Ekim','Kasım','Aralık');
       var theDate = new Date();

       document.write('<NOBR>' +
               theDate.getDate() + ' ' +
			   MonthName[theDate.getMonth()] + ' ' +
               (theDate.getYear() < 200 ? theDate.getYear() + 1900 : theDate.getYear()) +
              '</font></NOBR>');
