    // -- 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] = "Styczen";
    months[2] = "Luty";
    months[3] = "Marzec";
    months[4] = "Kwiecien";
    months[5] = "Maj";
    months[6] = "Czerwiec";
    months[7] = "Lipiec";
    months[8] = "Sierpien";
    months[9] = "Wrzesien";
    months[10] = "Pazdziernik"; 
    months[11] = "Listopad";
    months[12] = "Grudzien";
    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 (date + " " + month + ", " + year)
    // -- end hiding 
    
