Dni_tygodnia = new Array(7)
Dni_tygodnia[0] = " Sunday "
Dni_tygodnia[1] = " Monday "
Dni_tygodnia[2] = " Tuesday "
Dni_tygodnia[3] = " Wednesday "
Dni_tygodnia[4] = " Thursday "
Dni_tygodnia[5] = " Friday "
Dni_tygodnia[6] = " Saturday "
Miesiace = new Array(12)
Miesiace[0] = "January "
Miesiace[1] = "February "
Miesiace[2] = "March "
Miesiace[3] = "April "
Miesiace[4] = "May "
Miesiace[5] = "June "
Miesiace[6] = "July "
Miesiace[7] = "August "
Miesiace[8] = "September "
Miesiace[9] = "Oktober "
Miesiace[10] = "November "
Miesiace[11] = "December "
function podaj_date(){
    var Today = new Date()
    var WeekDay = Today.getDay()
    var Month = Today.getMonth()
    var Day = Today.getDate()
    var Year = Today.getFullYear()
    if(Year <= 99)
        Year += 1900

    return Dni_tygodnia[WeekDay] + "," + " " + Day + " of " + Miesiace[Month] + " " + Year
}

