// JavaScript Document
	function ElmWidth(objID) {
		if(document.getElementById(objID).clientWidth) {
			return(document.getElementById(objID).clientWidth);
			alert(document.getElementById(objID).clientWidth);
		} 
		else {
		if(document.getElementById(objID).offsetWidth) {
			return(document.getElementById(objID).offsetWidth);
			alert(document.getElementById(objID).offsetWidth);
		}
		}
	}
		//cWidth = ElmWidth('isImageRow');
		//alert(cWidth);
	//	var cObjAccroche = document.getElementById('BasP');
	//	if (cObjAccroche) {cObjAccroche.style.marginTop=cHeight + 'px'};

	//Redéfinition de la hauteur de l'iframe dans menu.asp
	//cHeight = ElmHeight('FlottantPage');
	//var cObjAccroche = document.getElementById('MenuFlotant<% =Page %>');
	//alert(cObjAccroche+' '+cHeight);
	//if (cObjAccroche) {cObjAccroche.style.height=cHeight + 'px'};
