
/* POUR MISE A JOUR*/
<!--
/*************************************************************************
* APPLICATION : Afficher la date de modification du document en francais *
**************************************************************************/
  function MakeArray(n) {this.length = n; return this;}
  var Days = new MakeArray(7);
  var Months = new MakeArray(12);
  var name = navigator.appName;
  Days[0]="dimanche";
  Days[1]="lundi";
  Days[2]="mardi";
  Days[3]="mercredi";
  Days[4]="jeudi";
  Days[5]="vendredi";
  Days[6]="samedi";
  Months[1]="janvier";
  Months[2]="février";
  Months[3]="mars";
  Months[4]="avril";
  Months[5]="mai";
  Months[6]="juin";
  Months[7]="juillet";
  Months[8]="août"; 
  Months[9]="septembre";
  Months[10]="octobre";
  Months[11]="novembre"; 
  Months[12]="décembre";
function getNiceDate(theDate) {
	if (name == "Microsoft Internet Explorer") return Days[theDate.getDay()] + " " + theDate.getDate() + " " + Months[theDate.getMonth()+1] + " " + [theDate.getYear()];
	else return Days[theDate.getDay()] + " " + theDate.getDate() + " " + Months[theDate.getMonth()+1] + " 200" + [theDate.getYear()-100];
}
// -->
/* FIN POUR MISE A JOUR*/

<!--
function chgpage(formulaire)
{
if (formulaire.listepages.selectedIndex != 0)
{
location.href = formulaire.listepages.options[formulaire.listepages.selectedIndex].value;
}
}
//-->


if (window.Event) // Only Netscape will have the CAPITAL E.
  document.captureEvents(Event.MOUSEUP); // catch the mouse up event
function nocontextmenu()  // this function only applies to IE4, ignored otherwise.
{
	event.cancelBubble = true
	event.returnValue = false;
	return false;
}
function norightclick(e)	// This function is used by all others
{
	if (window.Event)	// again, IE or NAV?
	{
		if (e.which == 2 || e.which == 3)
			return false;
	}
	else
		if (event.button == 2 || event.button == 3)
		{
			event.cancelBubble = true
			event.returnValue = false;
			return false;
		}

}
document.oncontextmenu = nocontextmenu;		// for IE5+
document.onmousedown = norightclick;		// for all others



function disableselect(e){
return false
}

function reEnable(){
return true
}

//if IE4+
document.onselectstart=new Function ("return false")

//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}


