
var today=new Date();
var month="";
var day="";
var year="";

function highlight(img,path) {
document[img].src = path + "images/" + img + "_on.gif";
}

function unhighlight(img,path) {
document[img].src = path + "images/" + img + "_off.gif";
}

function popup (src,name,w,h) {
size=",width="+w+",height="+h
browser=window.open(src, name,"scrollbars=yes,resizable=no,toolbar=no,status=no,menubar=no,location=no,directories=no"+size)
}

function GetTextDate()
{
todays_date();
document.writeln(document.day+" "+today.getDate()+" "+document.month+" "+document.year);
}

function todays_date() {

var month=today.getMonth();
var day_of_week=today.getDay();

document.month=""
document.year = today.getFullYear();
month++; // maintenant compris entre 1 et 12

if(month==1) {
document.month="janvier";
}
if(month==2) {
document.month="fevrier";
}
if(month==3) {
document.month="mars";
}
if(month==4) {
document.month="avril";
}
if(month==5) {
document.month="mai";
}
if(month==6) {
document.month="juin";
}
if(month==7) {
document.month="juillet";
}
if(month==8) {
document.month="aout";
}
if(month==9) {
document.month="septembre";
}
if(month==10) {
document.month="octobre";
}
if(month==11) {
document.month="novembre";
}
if(month==12) {
document.month="decembre";
}

document.day=""
if(day_of_week==0)
document.day="Dimanche";
if(day_of_week==1)
document.day="Lundi";
if(day_of_week==2)
document.day="Mardi";
if(day_of_week==3)
document.day="Mercredi";
if(day_of_week==4)
document.day="Jeudi";
if(day_of_week==5)
document.day="Vendredi";
if(day_of_week==6)
document.day="Samedi";
}

function GetUpdateTime()
{
var fulldate_str=new Date(document.lastModified);
var dayupd=fulldate_str.getDate();
if (dayupd<10)
sepday = "0";
else
sepday = "";
var monthupd=fulldate_str.getMonth()+1;
if (monthupd<10)
sepmonth="0";
else
sepmonth="";
var yearupd=fulldate_str.getFullYear();
fulldate_str=sepday+dayupd+"/"+sepmonth+monthupd+"/"+yearupd;
document.write(fulldate_str)
}

