	<!--
	function AfficherMasque() {
		if (!(obj_div_masque=document.getElementById("div_masque"))) {
			obj_div_masque = document.createElement("div");
			obj_div_masque.id = "div_masque";
			document.body.appendChild(obj_div_masque);
		}
		obj_div_masque.style.cssText="position:absolute;z-index:99;top:0px;left:0px;filter:alpha(opacity:70);display:block;background-color: #FFFFFF;"
		obj_div_masque.style.opacity = .7

		if (document.documentElement.scrollHeight) 
			if (document.documentElement.scrollHeight>document.body.scrollHeight) hauteurPage=document.documentElement.scrollHeight; else hauteurPage=document.body.scrollHeight;
		else	if (document.body.scrollHeight>document.body.clientHeight) hauteurPage=document.body.scrollHeight; else hauteurPage=document.body.clientHeight;
		if (document.documentElement.scrollWidth) 
			if (document.documentElement.scrollWidth>document.body.scrollWidth) largeurPage=document.documentElement.scrollWidth; else largeurPage=document.body.scrollWidth;
		else	if (document.body.scrollWidth>document.body.clientWidth) largeurPage=document.body.scrollWidth; else largeurPage=document.body.clientWidth;

		obj_div_masque.style.height = hauteurPage + "px";
		obj_div_masque.style.width = largeurPage + "px";
	}
	-->
