<!--
	
	var isMOZ = (navigator.appName.substring(0,3) == "Net") ? true : false ;
	var isIE  = (navigator.appName.substring(0,3) == "Net") ? false : true ;
	var isIE7 = (navigator.appVersion.indexOf("MSIE 7.0") != -1) ? true : false ;
	
	var CurrThumb = 1;
	
	function ViewThumb(fNum,fWidth) {
		
		if (!isIE) {
			new Effect.Move( "picthumb" , { "x":-1*(fNum-1)*fWidth , "y":0 , "mode":"absolute" , "duration":0.35 } );
		} else {
			e("picthumb").style.left = (-1*(fNum-1)*fWidth) + "px";
		}
		CurrThumb = fNum;
		
	}
	
	function NextThumb(fWidth) {
		if (CurrThumb < NbThumbs) {
			ViewThumb(CurrThumb+1,fWidth);
		}
	}
	
	function PrevThumb(fWidth) {
		if (CurrThumb > 1) {
			ViewThumb(CurrThumb-1,fWidth);
		}
	}
	
	function plop(fUrl,fName,fWidth,fHeight,fOptions) {
		
		if (!fWidth )  fWidth  = 250 ;
		if (!fHeight)  fHeight = 250 ;
		if (!fOptions) fOptions = "" ; else fOptions = "," + fOptions ;
		
		var PosLeft = ( screen.width  - fWidth  ) / 2 ;
		var PosTop  = ( screen.height - fHeight ) / 2 ;
		
		var WOpen = window.open(fUrl,fName,"left=" + PosLeft + ",top=" + PosTop + ",width=" + fWidth + ",height=" + fHeight + fOptions);
		WOpen.focus();
		
	}
	
	function setMail(fObj,fName,fDomain,fExt) {
		
		var TrueMail = fName + "@" + fDomain + "." + fExt;
		e(fObj).href = "mailto:" + TrueMail;
		e(fObj).title = "Envoyer un email ŕ " + TrueMail;
		
	}
	
	function swap(fObj,fSrc) {
		
		if (e(fObj)) e(fObj).src = fSrc ;
		
	}
	
	function preload() {
		
		var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
		var i,j=d.MM_p.length,a=preload.arguments; for(i=0; i<a.length; i++)
		if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
		
	}
	
	function focusfield(fObj,fTxt) {
		
		if (e(fObj)) {
			if (e(fObj).value == fTxt) {
				e(fObj).value = "";
			}
		}
		
	}
	
	function blurfield(fObj,fTxt) {
		
		if (e(fObj)) {
			if (e(fObj).value == "") {
				e(fObj).value = fTxt;
			}
		}
		
	}
	
	function e(fObj) {
		
		if (typeof(fObj) == "object") {
			return(fObj);
		} else {
			return(document.getElementById(fObj));
		}
		
	}
	
	function CheckSearch() {
		
		if (!document.defaultsearchicon) document.defaultsearchicon = e("submitsearch").src;
		
		if (e("q_keywords").value == "concentré") {
			e("submitsearch").src = "images/logo_.gif";
		} else {
			e("submitsearch").src = document.defaultsearchicon;
		}
		
	}
	
	function AutoSelectDpt(fDpt,fCombo) {
			var country = document.getElementById("i_country").value;
			if( country == 73 ) {
				if (fDpt.length >= 2) {
					if (departements[fDpt.substr(0,2)]) {
						e(fCombo).value = departements[fDpt.substr(0,2)];
					}
				}
			}
	}
	
-->