now = new Date()
if(0 == now.getDay())
	document.write("Dimanche ")
else if(1 == now.getDay())
	document.write("Lundi ")
else if(2 == now.getDay())
	document.write("Mardi ")
else if(3 == now.getDay())
	document.write("Mercredi ")
else if(4 == now.getDay())
	document.write("Jeudi ")
else if(5 == now.getDay())
	document.write("Vendredi ")
else if(6 == now.getDay())
	document.write("Samedi ")
now = new Date()
	document.write(now.getDate())
now = new Date()
if(0 == now.getMonth())
	document.write(" janvier ")
else if(1 == now.getMonth())
	document.write(" février ")
else if(2 == now.getMonth())
	document.write(" mars ")
else if(3 == now.getMonth())
	document.write(" avril ")
else if(4 == now.getMonth())
	document.write(" mai ")
else if(5 == now.getMonth())
	document.write(" juin ")
else if(6 == now.getMonth())
	document.write(" juillet ")
else if(7 == now.getMonth())
	document.write(" août ")
else if(8 == now.getMonth())
	document.write(" septembre ")
else if(9 == now.getMonth())
	document.write(" octobre ")
else if(10 == now.getMonth())
	document.write(" novembre ")
else if(11 == now.getMonth())
	document.write(" décembre ")
now = new Date()
	document.write(now.getYear())