function createPlayer(theFile, theImage) {
	var s = new SWFObject("medias/mediaplayer.swf","vids","300","250","8");
	s.addParam("allowfullscreen","true");
	s.addVariable("file",theFile);
	s.addVariable("width","330");
	s.addVariable("height","250");

	s.addVariable("autostart","true");
	s.addVariable("image",theImage);

	s.addVariable("enablejs","true");
	s.addVariable("javascriptid","thePlayerId"); 
	s.write("container");
}

function createPlayerLightbox(theFile, theImage) {
	var s = new SWFObject("medias/mediaplayer.swf","vids","300","250","8");
	s.addParam("allowfullscreen","true");
	s.addVariable("file",theFile);
	s.addVariable("width","330");
	s.addVariable("height","250");

	s.addVariable("autostart","true");
	s.addVariable("image",theImage);

	s.addVariable("enablejs","true");
	s.addVariable("javascriptid","thePlayerId"); 
	s.write("player");
}

function play_youtube(video){
	// addresse video du type : http://www.youtube.com/v/6lcmNaXmjvs
	document.getElementById("container").innerHTML=video;
}

function play_youtubeLightbox(video){
	// addresse video du type : http://www.youtube.com/v/6lcmNaXmjvs
	document.getElementById("player").innerHTML=video;
}

function createMiniPlayer(theFile) {
	var s = new SWFObject("medias/mediaplayer.swf","vids","118","18","8");
	s.addParam("allowfullscreen","false");
	s.addVariable("file",theFile);
	s.addVariable("width","118");
	s.addVariable("height","18");

	s.addVariable("autostart","true");

	s.addVariable("enablejs","true");
	s.addVariable("javascriptid","thePlayerId"); 
	s.write("player");
}
