<!--
// Copyright 2008 Ronny Adsetts (ronny.adsetts@amazinginternet.com)
//

window.onload = function() {

    /*
     * flashembed places Flowplayer into HTML element
     * whose id="example" (see below this script tag)
     */
    flashembed("videoDVD",

      /*
       * second argument supplies standard Flash parameters.
       * basically these are all you want to modify
       * but you can see full list here
       */
      {
         src:'/video/FlowPlayerLight.swf',
         width:320,
         height:240,
         bgcolor:'#ffffff'
      },

      /*
       * third argument is Flowplayer specific configuration
       * full list of options is given here
       */
      {config: {
        videoFile: '/video/true-costs-of-fire.flv',
        initialScale: 'scale',
        useNativeFullScreen: true,
		showVolumeSlider: false,
		controlsOverVideo: 'ease',
		controlBarBackgroundColor: -1,
		controlBarGloss: 'low',
		autoPlay: false,
		autoBuffering: false,
		autoRewind: true,
		loop: false
         // supply more options here by separating them with commas
      }}
   );
}

//-->

