//dd mm yyyy
function dmy()
{
var d=new Date()
var weekday=new Array("Duminica","Luni","Marti","Miercuri","Joi","Vineri","Sambata")
var monthname=new Array("Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie")
document.write('<font size=1 face=verdana color=#996633><b>')
document.write(weekday[d.getDay()] + ", ")
document.write(d.getDate() + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write('</b></font>')
}

/*
update automat
function update()
{
document.write(document.lastModified)
}
*/

//update manual
function update()
{
	document.write("19 Mai 2006, ora 17:22")
}
