// JavaScript Document
// JP - 07/2009

<!-- Anti Frame
//    if (window!=top) {top.location=window.location;}
//-->


<!-- Favoris
	language="JavaScript1.2"
	var bk_url="http://www.augoutdujour.net"
	var bk_title="Au Goût du Jour"
	function addbookmark(){
	if (document.all)
	window.external.AddFavorite(bk_url,bk_title)
	}
//-->


<!-- FONCTION JOURS - DATE
function JourSemaine(){
           this[0] = "Dimanche";
		   this[1] = "Lundi";
           this[2] = "Mardi";
		   this[3] = "Mercredi";
           this[4] = "Jeudi";
		   this[5] = "Vendredi";
           this[6] = "Samedi";
           }

function Mois(){
           this[0] = "Janvier";
		   this[1] = "Fevrier";
           this[2] = "Mars";
		   this[3] = "Avril";
           this[4] = "Mai";
		   this[5] = "Juin";
           this[6] = "Juillet";
		   this[7] = "Aout";
           this[8] = "Septembre";
		   this[9] = "Octobre";
           this[10] = "Novembre";
		   this[11] = "Decembre";
           }
function date(){
           var semaine=new JourSemaine();
           var mois=new Mois();
           var myDate=new Date();
               var result=semaine[myDate.getDay()]+" "+myDate.getDate()+" "+ mois[myDate.getMonth()]+" "+ myDate.getFullYear();
	   document.writeln(result);
	   }
-->
