
function startclock()
{
var thetime=new Date();
var nhours=thetime.getHours();
var nmins=thetime.getMinutes();
var nsecn=thetime.getSeconds();
var nday=thetime.getDay();
var nmonth=thetime.getMonth();
var ntoday=thetime.getDate();
var nyear=thetime.getYear();
var AorP=" ";

if (nday==0)
  nday="Dimanche";
if (nday==1)
  nday="Lundi";
if (nday==2)
  nday="Mardi";
if (nday==3)
  nday="Mercredi";
if (nday==4)
  nday="Jeudi";
if (nday==5)
  nday="Vendredi";
if (nday==6)
  nday="Samedi";
nmonth+=1;
if (nyear<=99)
  nyear= "19"+nyear;
if ((nyear>99) && (nyear<2000))
 nyear+=1900;
document.forms.clockform.clockspot.value=nday+", "+ntoday+"/"+nmonth+"/"+nyear+AorP+" "+nhours+":"+nmins+":"+nsecn+" ";
setTimeout('startclock()',1000);
}   
