function emailReplace(){
	
	var el=document.getElementsByTagName("*");
	for(i=0;i<el.length;i++){
		if(el[i].getAttribute("class")=="emailReplace" || el[i].getAttribute("className")=="emailReplace"){
			var em=el[i].innerHTML;
			em=em.replace(/[a-zA-Z]/g,function(c){return String.fromCharCode((c<="Z"?90:122)>=(c=c.charCodeAt(0)+13)?c:c-26);});
			em='<a href="mailto:'+em+'">'+em+'</a>';
			el[i].innerHTML=em;
		}
	}
	
}

function resetText(){
	if ("Recherche"==document.getElementById("searchform").s.value || "Search"==document.getElementById("searchform").s.value){
		document.getElementById("searchform").s.value = "";
	}
}
