<!-- Begin

var months=new Array(13);
months[1]="Styczeń";
months[2]="Luty";
months[3]="Marzec";
months[4]="Kwiecień";
months[5]="Maj";
months[6]="Czerwiec";
months[7]="Lipiec";
months[8]="Sierpień";
months[9]="Wrzesień";
months[10]="Październik";
months[11]="Listopad";
months[12]="Grudzień";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)    // Y2K Fix, Isaac Powell
year = year + 1900; // http://onyx.idbsu.edu/~ipowell
document.write("<left>" + date + " ");
document.write(lmonth + " " + year + "</left>");

// -->
					
