    // -- made by A1javascripts.com, please keep these credits when using this script
    days = new Array(7)
    days[1] = "Niedziela";
    days[2] = "Poniedziałek";
    days[3] = "Wtorek"; 
    days[4] = "sroda";
    days[5] = "Czwartek";
    days[6] = "Piątek";
    days[7] = "Sobota";
    months = new Array(12)
    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] = "Pazdziernik"; 
    months[11] = "Listopad";
    months[12] = "Grudzień";
    today = new Date(); day = days[today.getDay() + 1]
    month = months[today.getMonth() + 1]
    date = today.getDate()
    year=today.getYear(); 
if (year < 2000)
year = year + 1900;
    document.write ("<font class=poz10 color=000000> &nbsp;"+ day +
    ", " + date + " " + month + ", " + year + "</font>")
    // -- end hiding 
    
