getit1="";
getit2="";
today = new Date();
weekday = today.getDay();
if (weekday == 0) getit1='Dimanche';
if (weekday == 1) getit1='Lundi';
if (weekday == 2) getit1='Mardi';
if (weekday == 3) getit1='Mercredi';
if (weekday == 4) getit1='Jeudi';
if (weekday == 5) getit1='Vendredi';
if (weekday == 6) getit1='Samedi';
month = today.getMonth();
if (month == 0) getit2='Janvier';
if (month == 1) getit2='Février';
if (month == 2) getit2='Mars';
if (month == 3) getit2='avril';
if (month == 4) getit2='Mai';
if (month == 5) getit2='Juin';
if (month == 6) getit2='Juillet';
if (month == 7) getit2='Août';
if (month == 8) getit2='Septembre';
if (month == 9) getit2='Octobre';
if (month == 10) getit2='Novembre';
if (month == 11) getit2='Décembre';
date = today.getDate();
year=today.getFullYear();
document.write ("<H7>" + getit1,' ',date,' ',getit2, "</H7>");
