function miesiac_rok()
{
monthnames = new Array("Stycze&#324;","Luty","Marzec","Kwiecie&#324;","Maj","Czerwiec","Lipiec","Sierpie&#324;", "Wrzesie&#324;","Pazdziernik","Listopad","Grudzie&#324;");
todayDate = new Date();
var thismonth = todayDate.getMonth();
var thisyear = todayDate.getYear();
thisyear = (thisyear % 100) + 2000;
document.write(monthnames[thismonth] + " " + thisyear);
}
