// JavaScript Document
		var attributes = {};

		var params = {};
	 	// for fullscreen
		params.allowfullscreen = "true";

		var flashvars = {};
		
	 	// the PHP script NONE FOR LOCAL ACCESS
		//flashvars.streamscript = "flvprovider.php";
		//flashvars.bufferlength = "1.5";

		// for thumb
		// Width and Height of the images in the playlist (new variables by PhilFlash)
		flashvars.thumbsinplaylist = "true";
		flashvars.shuffle = "false";
		flashvars.thumbimagewidth = "61";
		flashvars.thumbimageheight = "46";

		// width and height of the player (h is height of the video + 20 for controlbar)
		// required for IE7
		flashvars.width = "480";
		flashvars.height = "262";
		// width  and height of the video
		flashvars.displaywidth = "480";
		flashvars.displayheight = "262";
		flashvars.autostart = "true";
		flashvars.showdigits = "true";

	 	// for fullscreen
		flashvars.showfsbutton = "true";

		// 9 for Flash Player 9 (for ON2 Codec and FullScreen)
		swfobject.embedSWF("phpsflvplayer.swf", "flashcontent", "480", "262", "9.0.0", "playerProductInstall.swf", flashvars, params, attributes);


