
	   <!-- Activate Cloaking Device
	   function greeting()
	     {
      		var today = new Date();
      		var hrs = today.getHours();
      		var day=today.getDay();
	        document.write("");
	     }

	   greeting();

	   <!-- end hiding contents from old browsers  -->

	   // Deactivate Cloaking -->

       

	<!-- Activate Cloaking Device

	function clear() 
	  {
	    window.status="";
	  }

	function display(stuff) 
	  {
	    window.status = stuff;
	    setTimeout("clear()",8000);
	  }

	// Deactivate Cloaking -->

      <!-- Activate Cloaking Device

	// Global variables for timer.

	var timerID = null;
	var timerRunning = false;

	// Called by both onLoad in BODY tag, and Resume button.

	function startclock () 
	   {
  	     // Make sure the clock is stopped
	     stopclock();
	     time();
	   }


	// Kills clock.

	function stopclock ()
   	   {
	     if(timerRunning)
	     clearTimeout(timerID);
 	     timerRunning = false;
 	   }

	function time ()
   	   {
	     var now = new Date();
	     var yr = now.getYear()+1900;
         if (yr>=2100) yr = yr-1900;
	     var mName = now.getMonth() + 1;
	     var dName = now.getDay() + 1;
	     var dayNr = ((now.getDate()<10) ? "0" : "")+ now.getDate();
	     var ampm = (now.getHours() >= 12) ? " (après-midi)" : " (matin)"
	     var hours = now.getHours();
	     hours = ((hours > 12) ? hours - 12 : hours);
	     var minutes = ((now.getMinutes() < 10) ? ":0" : ":") + now.getMinutes();
	     var seconds = ((now.getSeconds() < 10) ? ":0" : ":") + now.getSeconds();
	     if(dName==1) Day = "Dim";
	     if(dName==2) Day = "Lun";
	     if(dName==3) Day = "Mar";
	     if(dName==4) Day = "Mer";
	     if(dName==5) Day = "Jeu";
	     if(dName==6) Day = "Ven";
	     if(dName==7) Day = "Sam";
	     if(mName==1) Month="Jan";
 	     if(mName==2) Month="Fév";
	     if(mName==3) Month="Mar";
	     if(mName==4) Month="Avr";
	     if(mName==5) Month="Mai";
	     if(mName==6) Month="Juin";
	     if(mName==7) Month="Juil";
	     if(mName==8) Month="Août";
	     if(mName==9) Month="Sept";
	     if(mName==10) Month="Oct";
	     if(mName==11) Month="Nov";
	     if(mName==12) Month="Déc";
	  }

	// Stops clock and clears status bar.
	function clearStatus()
   	  {
	     if(timerRunning)
	     clearTimeout(timerID);
	     timerRunning = false;
	     window.status=" ";   
	  }

	// Deactivate Cloaking -->

       
	<!-- // Activate Cloaking Device
	var now = new Date();
	var yr = now.getYear()+1900;
	if (yr>=2100) yr = yr-1900;
	var mName = now.getMonth() + 1;
	var dName = now.getDay() + 1;
	var dayNr = ((now.getDate()<10) ? "0" : "")+ now.getDate();
	if(dName==1) Day = "Dim";
	if(dName==2) Day = "Lun";
	if(dName==3) Day = "Mar";
	if(dName==4) Day = "Mer";
	if(dName==5) Day = "Jeu";
	if(dName==6) Day = "Ven";
	if(dName==7) Day = "Sam";
	if(mName==1) Month="Jan";
	if(mName==2) Month="Fév";
	if(mName==3) Month="Mars";
	if(mName==4) Month="Avr";
	if(mName==5) Month="Mai";
	if(mName==6) Month="Juin";
	if(mName==7) Month="Juil";
	if(mName==8) Month="Août";
	if(mName==9) Month="Sept";
	if(mName==10) Month="Oct";
	if(mName==11) Month="Nov";
	if(mName==12) Month="Déc";
	
	// String to display current date.
	
	var todaysDate =(""
	      + Day
		+ " "
       	+ dayNr      
	 	+ " "
       	+ Month
       	+ " "
       	+ yr
       	+ "<BR><BR>");

	// Write date to page.
	document.open();
	document.write("<FONT color=#000066 SIZE=2 FACE='Bookman Old Style'><b>"        +todaysDate+"</b></FONT>");
	
	// Deactivate Cloaking  -->
