
	  <!-- to hide script contents from old browsers

	
	var SUN = 0,
		MON = 1,
		TUES = 2,
		WED = 3,
		THUR = 4,
		FRI = 5,
		SAT = 6;

	var today = null;
		

	var gWeekday = new weekdayarr("Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi");
	var gMonth = new gregmontharr("Janvier","Fevrier","Mars","Avril","Mai","Juin","Juillet","Aout","Septembre","Octobre","Novembre","Decembre");
 

		function weekdayarr(d0,d1,d2,d3,d4,d5,d6)
	{
		this[0] = d0; this[1] = d1; this[2] = d2; this[3] = d3;
		this[4] = d4; this[5] = d5; this[6] = d6;
	}

	function gregmontharr(m0,m1,m2,m3,m4,m5,m6,m7,m8,m9,m10,m11)
	{
		this[0] = m0; this[1] = m1; this[2] = m2; this[3] = m3;
		this[4] = m4; this[5] = m5; this[6] = m6; this[7] = m7;
		this[8] = m8; this[9] = m9; this[10] = m10; this[11] = m11;
	}


	function getToday()
	{
		if(today == null) {
			today = new Date();
			
			afterSundown = (today.getHours() >= 19);
		}
	}

	function displayWeekday()
	{
		document.writeln(gWeekday[today.getDay()]);
	}

	function getFullYear(d)
	{
	    var y = d.getYear();
	
	    if (y < 1000)
	    	y += 1900;
	
	    return y;
	}	
	
	function displayGregorianDate()
	{
		document.writeln(today.getDate() +" " + gMonth[today.getMonth()] + " " + getFullYear(today));
	}
	//	end hiding contents from old browsers  -->
	   