   <!-- Begin
   var months=new Array(13);
   months[1]="Sausio";
   months[2]="Vasario";
   months[3]="Kovo";
   months[4]="Balandžio";
   months[5]="Gegužės";
   months[6]="Birželio";
   months[7]="Liepos";
   months[8]="Rugpjūčio";
   months[9]="Rugsėjo";
   months[10]="Spalio";
   months[11]="Lapkričio";
   months[12]="Gruodžio";
   var time=new Date();
   var lmonth=months[time.getMonth() + 1];
   var date=time.getDate();
   var year=time.getYear();
   if (year < 2000)
   year = year + 1900;
   // End -->
