            home();
			
			// Demo playing from stream + explanations
            function home()
	        {
	            // Creation of the player , giving it id (mpl) , width (317) & height (255)
                var s1 = new SWFObject('player.swf','mpl','317','255','9');
                // Allows full screen
                s1.addParam('allowfullscreen','true');
		s1.addParam('allowscriptaccess','always');
                // Sets the stream ip ( in this case 1.1.1.1 ) and the same properties as in the file mode
                s1.addParam('flashvars','file=LaVergneChannel3.flv&amp;streamer=rtmp://coltv.lavergne.org/optibase&amp;controlbar=bottom&amp;autostart=true&amp;displayclick=fullscreen&amp;stretching=exactfit');
                // Writes the object to screen to show the video
                s1.write('preview');
			}

