// JavaScript Document

	days = new Array(7)
    days[1] = "Duminica";
    days[2] = "Luni";
    days[3] = "Marti"; 
    days[4] = "Miercuri";
    days[5] = "Joi";
    days[6] = "Vineri";
    days[7] = "Sambata";
    months = new Array(12)
    months[1] = "Ianuarie";
    months[2] = "Februarie";
    months[3] = "Martie";
    months[4] = "Aprilie";
    months[5] = "Mai";
    months[6] = "Iunie";
    months[7] = "Iulie";
    months[8] = "August";
    months[9] = "Septembrie";
    months[10] = "Octombrie"; 
    months[11] = "Noiembrie";
    months[12] = "Decembrie";
    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 ("<div> "+ day +
    ", " + date + " " + month + " " + year + "</div>")