/* Popup recrutement */
function popupRecrutement(ref) {
	titre="Recrutement";
	w=open("popup-recrutement.php?ref="+ref,"recrutement","width=600,height=600,toolbar=no,scrollbars=no,resizable=no,top=0,left=0");
	w.document.close();
}

/* Encode mail */
function encodeContact(a,b,c,d){
	var tg="<";
	var name=a;
	var at="@";
	var host=b;
	document.write(tg+"a hr"+"ef=mai"+"lto:"+name);
	document.write(at+host+" class=\""+d+"\">"+c+tg+"/a>");
}

/* Centrage popup */
function centragePopup(wt, ht) { 
		ww=wt+10; 
		hh=ht+60; 
		sw=Math.round((screen.availWidth-ww)/2);	
		sh=Math.round((screen.availHeight-hh)/2);
		window.resizeTo(ww,hh); 
		window.moveTo(sw,sh); 
		window.focus();
}