        var months=new Array(13);
        months[1]="Ianuarie";
        months[2]="Februarie";
        months[3]="Martie";
        months[4]="Aprilie";
        months[5]="Mai";
        months[6]="Iunie";
        months[7]="Iulie";
        months[8]="August";
        months[9]="Septembrie";
        months[10]="Octombrie";
        months[11]="Noiembrie";
        months[12]="Decembrie";
        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("<left><FONT FACE=ARIAL color=#800000>" + date + "</FONT> ");
              document.write("<FONT FACE=ARIAL color=#800000>" + lmonth + " " + year + "</FONT></left>");
