<!--

       var DayOfWeek = new Array('Duminica','Luni','Marti','Miercuri','Joi','Vineri','Sambata');
       var MonthName = new Array('Ianuarie','Februarie','Martie','Aprilie','Mai','Iunie','Iulie','August','Septembrie', 'Octombrie','Noiembrie','Decembrie');
       var theDate = new Date();

       document.write('<font face="verdana" size="1" LETTER-SPACING: -1px color=000000><NOBR>' +
               DayOfWeek[theDate.getDay()] + ', ' +
 theDate.getDate() + ' ' +
			   MonthName[theDate.getMonth()] + ' ' +
              
               (theDate.getYear() < 200 ? theDate.getYear() + 1900 : theDate.getYear()) +
              '</font></NOBR>');
        //-->