
<!--
function chgpage(formulaire)
{
if (formulaire.listepages.selectedIndex != 0)
{
location.href = formulaire.listepages.options[formulaire.listepages.selectedIndex].value;
}
}
//-->
<!--
if (top.location != self.document.location) {

top.location=self.document.location; 

}
//-->
<!--
function fenetre(url)
{window.open(url, "fenetre", "screenx=0,screeny=0,width=338,height=188,menubar=no,status=no,resizable=yes,scrollbars=no");
}
//-->

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
}

<!--
/*partie Moteur Recherche dans la page / */
var IE = (document.all); // Détection du navigateur
var a_win = window; // fenêtre à explorer.
var a_n   = 0;
function TrouveDansPage(chaine) {
	var a_txt, a_i, a_trouve;
	if (chaine == ""){
		return false;
	}
	// Trouver la prochaine occurrence de le chaine dans la page, retourner au debut de la page si nécessaire
	if (IE) { // Internet Explorer
		a_txt = a_win.document.body.createTextRange();
		// Trouver la a_nieme réponse à partir du début de la page.
		for (a_i = 0; a_i <= a_n && (a_trouve = a_txt.findText(chaine)) != false; a_i++) {
			a_txt.moveStart("character", 1);
			a_txt.moveEnd("textedit");
		}
		if (a_trouve) { // Si texte trouvé, le sélectionner et faire défiler la page pour qu'il soit visible.
			a_txt.moveStart("character", -1);
			a_txt.findText(chaine);
			a_txt.select();
			a_txt.scrollIntoView();
			a_n++;
		}
		else { // Sinon, recommencer en haut de page et trouver la 1ere occurrence.
			if (a_n > 0) {
				a_n = 0;
				TrouveDansPage(chaine);
			}
			else { // introuvable prévenir l'utilisateur.
				alert("\""+chaine+"\" est introuvable dans cette page.");
			}
		}
	}
	else { // autre navigateur qu'Internet Explorer
		if (!a_win.find(chaine)){
			while(a_win.find(chaine, false, true)){
				a_n++;
			}
		}
		else {
			a_n++;
		}
		if (a_n == 0){ // si introuvable prévenir l'utilisateur.
			alert("\""+chaine+"\" est introuvable dans cette page.");
		}
	}
	return false;
 }
function a_selectAll(champ) {
	var tempval=eval(champ);
	tempval.focus();
	tempval.select();
}
//  -->
