function popVideo(kelVideo){
	if(confirm('Disposez vous d\'une connexion haut débit ?')){
		video = kelVideo+".wmv";
		}else{
		video = kelVideo+"-L.wmv";
		/*largeur = "160";
		hauteur = "170";*/
		}
		
	largeur = "320";
	hauteur = "290";
	contVideo =  "X<br><object classid=\"CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95\" id=\"wmplayer\" width=\""+largeur+"\" height=\""+hauteur+"\" align=\"right\"";
	contVideo += " codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5, 1...'";
	contVideo += " standby='Loading Microsoft Windows Media Player components...' type='application/x-oleobject' VIEWASTEXT>";
	contVideo += "   <param name=\"filename\" value=\"videos/"+video+"\">";
	contVideo += "    <param name=\"ShowControls\" value=\"true\">";
	contVideo += "    <param name=\"ShowStatusBar\" value=\"ImageWindow\">";
	contVideo += "    <param name=\"ShowGoToBar\" value=\"cons\">";
	contVideo += "    <param name=\"stretchToFit\" value=\"false\">";
	contVideo += "    <param name=\"AnimationAtStart\" value=\"0\">";
	contVideo += "    <param name=\"ShowDisplay\" value=\"0\">";
	contVideo += "    <param name=\"Autostart\" value=\"1\">";
	contVideo += "    <param name=\"autoSize\" value=\"0\">";
	contVideo += "    <PARAM NAME=\"transparentatStart\" VALUE=\"1\">";
	contVideo += "<embed";
	contVideo += "	 src=\"videos/"+video+"\" ";
	contVideo += "	 type=\"application/x-mplayer2\"";
	contVideo += "	 type=\"http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/\"";
	contVideo += "	 controls=\"smallconsole\"";
	contVideo += "  stretchToFit=\"false\"";
	contVideo += "	 name=\"filmentreprise\"";
	contVideo += "	 loop=\"false\"";
	contVideo += "	 autostart=\"true\"";
	contVideo += "	 quality=\"autohigh\"";
	contVideo += "	 menu=\"true\"";
	contVideo += "	 palette=\"background\"";
	contVideo += "	 align=\"right\"";
	contVideo += "	 border=\"0\""; 
	contVideo += "	 width=\""+largeur+"\""; 
	contVideo += "	 height=\""+hauteur+"\">";
	contVideo += "</embed>";
	contVideo += "</object>";
	
	document.getElementById('cont_video').style.width = largeur;
	document.getElementById('cont_video').innerHTML = contVideo;
	document.getElementById('cont_video').style.display = '';
	}


