function Initialise_Video(){
	
	document.getElementById("flashcontent").innerHTML = "";
	var s1 = new SWFObject("Video/phpsflvplayer.swf","iwflash","550","428","9", "#FFFFFF");
	s1.write("flashcontent");
}

function Lancer_Video(tel_mail){
	
	// width of video:320, height of the video+20(for controlbar):260,
	// 9 for Flash Player 9 (for ON2 Codec and FullScreen)
	var s1 = new SWFObject("Video/phpsflvplayer.swf","iwflash","550","428","9", "#FFFFFF");
	// for ExpressInstall
	s1.useExpressInstall("Video/playerProductInstall.swf");
	s1.setAttribute("xiRedirectUrl", window.location.href);

	// the PHP script
	// the PHP script
	s1.addVariable("streamscript","flvprovider.php&file="+tel_mail+"/video.flv");
	//s1.addVariable("streamscript","../flvprovider.php");
	s1.addVariable("bufferlength","1.2");

	 // the width and the height of the video
	s1.addVariable("displaywidth","550");
	s1.addVariable("displayheight","410");
	s1.addVariable("autostart","true");
	s1.addVariable("showdigits","true");

	 // for fullscreen
	s1.addParam("allowfullscreen","true");
	s1.addVariable("showfsbutton","true");

	s1.write("flashcontent");

}

