


//
function InnerWidthFromFlash(){
	if (window.innerWidth) { 
    	return window.innerWidth; 
 	} else if (document.documentElement.clientWidth) { 
		return document.documentElement.clientWidth;
	} else {
		return document.body.clientWidth; 
	} 
}


//
function InnerHeightFromFlash(){
	if (window.innerHeight) { 
    	return window.innerHeight; 
 	} else if (document.documentElement.clientHeight) { 
		return document.documentElement.clientHeight;
	} else {
		return document.body.clientHeight; 
	} 
}



//
function afficheImageViaJS(imgFolder, imgName){
	//
	var swfObj = swfobject.getObjectById("elleouet");
	swfObj.afficheImage(imgFolder, imgName);
}
