function NouvelleFenetre(NomFrame,LargeurFen,HauteurFen){	        OptionFen = "width=" + LargeurFen + ",height=" + HauteurFen + ",status=no,scrollbars=no,resizable=no,copyhistory=no,directories=no,location=no,toolbar=no"	        MaRefFen = window.open ('',NomFrame,OptionFen)	        MaRefFen.focus ()	}function toggle(id) {   if (document.getElementById) {       var cdiv = document.getElementById(id);       if (cdiv) {           if (cdiv.className != 'minimized') cdiv.className = 'minimized';           else cdiv.className = '';       }   }}function MM_openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}// Email obfuscator script 2.1 by Tim Williams, University of Arizona// Random encryption key feature by Andrew Moulden, Site Engineering Ltd// This code is freeware provided these four comment lines remain intact// A wizard to generate this code is at http://www.jottings.com/obfuscator/function decode_emails(key, dest, cc, sujet, corps){ var link_destvar link_ccvar le_lienif (dest) {	link_dest = decode(key, dest)	le_lien = "mailto:" + link_dest}if (cc) {	link_cc = decode(key, cc)}if ((link_cc) || (sujet) || (corps)) { le_lien += "?" }if (link_cc) { le_lien += "cc=" + link_cc }if (sujet) { le_lien += "&subject=" + sujet }if (corps) { le_lien += "&body=" + corps }document.location.href = le_lien}function decode(key,coded){	shift=coded.length	link=""	for (i=0; i<coded.length; i++) {	if (key.indexOf(coded.charAt(i))==-1) {		ltr = coded.charAt(i)		link += (ltr)	}	else {		 		ltr = (key.indexOf(coded.charAt(i))-shift+key.length) % key.length		link += (key.charAt(ltr))	}	}return link}