function affichVideo(myId, url, width, height){
	
	swfobject.embedSWF(url, myId, width, height, "8.0.0");
}
function showSWF(myId, url, width, height){

var flashObjStr = "<object type=application/x-shockwave-flash width="+width+" height="+height+" loop=false><PARAM NAME=Movie value="+url+"><param name=autoplay value=true></object>"
document.getElementById('"+myId+"').innerHTML = flashObjStr;

}
