function showDate_ro()
{
// Store the date in a variable
d = new Date()
dateText = ""

// Get the current day and convert it to the name of the day
dayValue = d.getDay()
if (dayValue == 0)
    dateText += "Duminic&atilde;"
else if (dayValue == 1)
    dateText += "Luni"
else if (dayValue == 2)
    dateText += "Marti"
else if (dayValue == 3)
    dateText += "Miercuri"
else if (dayValue == 4)
    dateText += "Joi"
else if (dayValue == 5)
    dateText += "Vineri"
else if (dayValue == 6)
    dateText += "S&acirc;mb&atilde;t&atilde;"

// Get the current month and convert it to the name of the month
monthValue = d.getMonth()
dateText += ", " + d.getDate() + " "
if (monthValue == 0)
    dateText += "Ianuarie"
if (monthValue == 1)
    dateText += "Februarie"
if (monthValue == 2)
    dateText += "Martie"
if (monthValue == 3)
    dateText += "Aprilie"
if (monthValue == 4)
    dateText += "Mai"
if (monthValue == 5)
    dateText += "Iunie"
if (monthValue == 6)
    dateText += "Iulie"
if (monthValue == 7)
    dateText += "August"
if (monthValue == 8)
    dateText += "Septembrie"
if (monthValue == 9)
    dateText += "Octombrie"
if (monthValue == 10)
    dateText += "Noiembrie"
if (monthValue == 11)
    dateText += "Decembrie"

// Get the current year; if it's before 2000, add 1900
if (d.getYear() < 2000) 
    dateText += " " + (1900 + d.getYear())
else 
    dateText +=  " " + (d.getYear())

// Get the current minutes
minuteValue = d.getMinutes()
if (minuteValue < 10)
    minuteValue = "0" + minuteValue

// Get the current hours
hourValue = d.getHours()

// Customize the greeting based on the current hours
if (hourValue < 12)
    {
    greeting = "Buna dimineata!";
    timeText = " at " + hourValue + ":" + minuteValue + " AM";
    }
else if (hourValue == 12)
    {
    greeting = "Buna ziua!"
    timeText = " at " + hourValue + ":" + minuteValue + " PM"
    }
else if (hourValue < 17)
    {
    greeting = "Buna ziua!";
    timeText = " at " + (hourValue-12) + ":" + minuteValue + " PM";
    }
else
    {
    greeting = "Buna seara!";
    timeText = " at " + (hourValue-12) + ":" + minuteValue + " PM";
    }
// Write the greeting, the date, and the time to the page
document.write( dateText );
return true;
}
