<!--
function PageDate()
{
	currentDate = new Date()
	with (currentDate)
          {
		day=getDay()
		month=getMonth()+1
		this.document.write('  '+getDate()+'.'+month+'.'+getFullYear()+'.')
	}
	if (day==1){document.write(' Lundi')}
	if (day==2){document.write(' Mardi')}
	if (day==3){document.write(' Mercredi')}
	if (day==4){document.write(' Jeudi')}
	if (day==5){document.write(' Vendredi')}
	if (day==6){document.write(' Samedi')}
	if (day==0){document.write(' Dimanche')}
	document.write('<br>')
}

PageDate()

// -->