	function onResizeWin(hauteurFlash){
			if(hauteurFlash == undefined) { hauteurFlash = 360 }
			
			//HACK pour firefox
			if(navigator.userAgent.indexOf("Firefox")!=-1){
			 	setBarRight4Firefox();	
			}
	
			
			//HACK POUR IE	
			if(navigator.userAgent.indexOf("MSIE 7")>-1){
				var HeightMy = hauteurFlash + document.getElementById("SousFlash").offsetHeight;
				
				if(HeightMy >= document.getElementById("Div_Background").offsetHeight){
					document.getElementById("Div_Background").style.height = HeightMy + "px";
					document.getElementById("Div_Background_Table").style.height = HeightMy + "px";	
				}
				
				setOnglet4IE(true);
				
			}else if(navigator.userAgent.indexOf("MSIE")>-1){
				var HeightMy = hauteurFlash + document.getElementById("SousFlash").offsetHeight;
				
				if(HeightMy >= document.getElementById("Div_Background").offsetHeight){
					document.getElementById("Div_Background").style.height = HeightMy + "px";
					document.getElementById("Div_Background_Table").style.height = HeightMy + "px";	
				}
				
				setOnglet4IE(false);
			}
			
			
			SetMenuEnBas(hauteurFlash);
		}
		
		
		
function SetMenuEnBas(hauteurFlash){
	
	var HauteurTotal = document.body.clientHeight;
	var HauteurUtilise = document.getElementById("SousFlash").offsetHeight + hauteurFlash;
	
	if(HauteurUtilise < HauteurTotal){
		var monFoot = document.getElementById("Footer");
		monFoot.style.top = HauteurTotal - HauteurUtilise + "px";
	}
}


function setOnglet4IE(isIE7){
	//alert("isIE7: " + isIE7)
	if(isIE7){
		if((document.body.clientWidth / 2).toString().indexOf('.5') == -1){
			document.getElementById("OngletDroit").style.marginLeft = "400px";
		}else{
			document.getElementById("OngletDroit").style.marginLeft = "399px";
		}
	}else{
		if(document.body.scrollHeight > document.documentElement.clientHeight){
			//scrollbar visible
			document.getElementById("OngletDroit").style.marginLeft = "408px";
			//alert("scrool visible")
		}else{
			//scrollbar unvisible
			document.getElementById("OngletDroit").style.marginLeft = "400px";
			//alert("scrool unvisible")			
		}	
		//alert("document.body.scrollHeight: " + document.body.scrollHeight + "\ndocument.documentElement.clientHeight:" + document.documentElement.clientHeight)
	}
	
}

function setBarRight4Firefox(){
	//only call by firefox
	//document.getElementById("Footer").style.width = "800px";
	document.getElementById("Footer").style.left = "1px";
	document.getElementById("BodyImgRonder").style.left = "1px";
	document.getElementById("Footer").style.width = "799px";
	document.getElementById("TableBackMiddle").style.width = "799px";
}