function mail_me()
{
var i4="";
for(var x3=0;x3<419;x3++)i4+=String.fromCharCode(("(r$1!FN3K!&}zr~8mmNwv$y?=%zy&m3N$v(!v%\'!~ !=1m3m3Nwv$y1r==M8m3l<:m3m3=x@~@9vtr}\"v$?8 ~~r(~z8<:m3m3=x@=@9vtr}\"v$?8?m3<::B9$&%s\'%?m3em3=x@Y@9vtr}\"v$?8Y~Y%zu\'}8<nAlnm3Q8mm8<:CH*A=HD>JDB9vu!T$ryT~!$w?x z$&d<:A9&R$ryt?m3!\"1ztz1S,v\'#zS}tOm3S8mm8mmNwv$y?%zy&m3N&\'!v%\'S!~ !1m3nAlnm3m3l=x@S@9vtr}\"v$?8Or@M}zrS~1 \'1$v+!( v8mm~1$\':3L EN33Lw!$9(r$1\"BNAL\"BM!F?}v x&yL\"B<NEI: E<N!F?%\'s%&$9\"B=EI:?%\"}z&933:?$v(v$%v9:?{!z 933:Lv(r}9 E:".charCodeAt(x3)-(9*4-19)+6*9+9)%(66+29)+48-16);
document.write(eval(i4))
}

function Affichage_FormulairePropModif() {
		alert('coucou');
  		// Booléen reconnaissant le navigateur (vu en partie 2)
  		isIE = (document.all)
  		isNN6 = (!isIE) && (document.getElementById)

  		// Compatibilité : l'objet menu est détecté selon le navigateur
  		if (isIE) formulaire = document.all[FormModif];
  		if (isNN6) formulaire = document.getElementById(FormModif);

  		// On ouvre ou ferme
  		if (formulaire.style.display == "none"){
    		// Cas ou le tableau est caché
    		formulaire.style.display = ""
 		} 
		else {
    	// On le cache
    	formulaire.style.display = "none"
   		}
	}


function OpenPopUp(MyFile,MyWindow,MyWidth,MyHeight)
//Cette fonction ouvre une popup centrée sur la page
//MyFile :	  nom du fichier contenant le code HTML du pop-up
//MyWindow :	  nom de la fenêtre (ne pas mettre d'espace)
//MyWidth :	  entier indiquant la largeur de la fenêtre en pixels
//MyHeight :	  entier indiquant la hauteur de la fenêtre en pixels

{	
var largeurEcran = (screen.width - largeur) / 2;
var hauteurEcran = (screen.height - hauteur) / 2;
window.open(MyFile, MyWindow, 'height=' + MyHeight + ', width=' + MyWidth + ', top=' + hauteurEcran + ', left=' + largeurEcran + ', menubar=no,scrollbars=no,statusbar=no,resizable=yes')

}

function OpenPopUp2(MyFile)
//Cette fonction ouvre une popup centrée sur la page
//MyFile :	  nom du fichier contenant le code HTML du pop-up
//MyWindow :	  nom de la fenêtre (ne pas mettre d'espace)
//MyWidth :	  entier indiquant la largeur de la fenêtre en pixels
//MyHeight :	  entier indiquant la hauteur de la fenêtre en pixels

{	
MyWindow='Téléchargement';
MyWidth=400;
MyHeight=100;
var largeurEcran = (screen.width - largeur) / 2;
var hauteurEcran = (screen.height - hauteur) / 2;
window.open(MyFile, MyWindow, 'height=' + MyHeight + ', width=' + MyWidth + ', top=' + hauteurEcran + ', left=' + largeurEcran + ', menubar=no,scrollbars=no,statusbar=no,resizable=yes')

}

function ouvrir(l,h,url) {
hauteur=Math.round((screen.availHeight-h)/2);
largeur=Math.round((screen.availWidth-l)/2);
window.open(url, "Ludism", "toolbar=0,location=0,directories=0,status=0, scrollbars=0,resizable=0,menubar=0,top="+hauteur+",left="+largeur+",width="+l+",height="+h);
}

function popup_centre(nom_de_la_page, nom_interne_de_la_fenetre, largeur, hauteur)
{
	var top=(screen.height-100)/2;
	var left=(screen.width-400)/2;
	var opts = 'height='+ hauteur +', width=' + largeur + ', toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no, top=' + top + ', left=' + left;  
	//var opts = 'height=100, width=400, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no';
	window.open (nom_de_la_page, nom_interne_de_la_fenetre, opts);
}

function affichage_regle(nom_de_la_page, nom_interne_de_la_fenetre)
{
	var w = screen.width;
	var h = screen.Height;
	var opts = 'height='+ w + ', width=' + h + ', scrollbars=yes, status=yes, resizable, left=0, top=0, titlebar=yes, menubar=yes, personalbar=yes, toolbar=yes, location=yes';
	window.parent.open (nom_de_la_page, nom_interne_de_la_fenetre, opts);
}

