
		/*
	 	* window.onload event occurs after all HTML elements have been loaded
 		* this is a good place to setup your Flash elements
 		*/
		window.onload = function() {  
    	/*
	     * flashembed places Flowplayer into HTML element 
    	 * whose id="example" (see below this script tag)
     	*/
	    	flashembed("video_player_hamr", 
			/*
			* second argument supplies standard Flash parameters.
			* basically these are all you want to modify
			* but you can see full list here
			*/
				{
					/*
					* test that this swf- file can be accessed with your browser
					*/
					src:'/video/FlowPlayerClassic.swf',
					width:450,  
					height:365,
					bgcolor:'#ffffff'
				},
				/*
				* third argument is Flowplayer specific configuration
				* full list of options is given here
				*/
				{
					config:
					{   
						
						videoFile: '/video/hamr.flv',
												
						initialScale: 'scale',
						autoPlay: true,
						autoRewind: false,	
						// you can supply more options by separating them with commas
						useNativeFullScreen: true
					}
				}
			);
		}


