function load_video(path,width,height){
	var flashvars = {
		  MM_ComponentVersion:"1",
		  skinName:"Clear_Skin_1",
		  streamName:path,
		  autoPlay:"true",
		  autoRewind:"true"		  
		};
	  var params = {
		  salign:	"lt",
		  scale:	"noscale"
		  };
	  var attributes = {};
	  swfobject.embedSWF("video_player.swf", "video_flottant", width, height, "9.0.0","expressinstall.swf",flashvars, params, attributes);   
	  document.getElementById('video_container').style.top="60px";
	  ultimate_left=(479-(width/2));
	  document.getElementById('video_container').style.left=ultimate_left+"px";
	  document.getElementById('video_container').style.width=width+"px";
	  document.getElementById('video_container').style.height=height+"px";
	  document.getElementById('fond_noir_video').style.top="24px";
	  document.getElementById('fond_noir_video').style.width="959px";
	  document.getElementById('fond_noir_video').style.height=document.getElementById('viewport').offsetHeight+"px";
	}
function delete_video(){
	document.getElementById('video_container').style.top="-10000px";
	document.getElementById('video_container').innerHTML="<a href='javascript:delete_video()'>[X]</a> <div id='video_flottant'>asd</div>";
	document.getElementById('fond_noir_video').style.top="-1000px";
	document.getElementById('fond_noir_video').style.width="50px";
	document.getElementById('fond_noir_video').style.height="50px";
	}