function media_embed( id, splash, videoFile, fallbackVideoFile ) {
      var err_msg;
      if(fallbackVideoFile && !flashembed.isSupported([9,115]) ) {
        err_msg = "In order to see HD content, you need to update your <a href='http://adobe.com/go/getflashplayer'>Flash Player</a>";
      }
      flashembed( id, 
          {src: "/videos/mediaplayer.swf",
          version: [8,0],
          onFail: function( version ) {
            err_msg = "In order to see streaming content, you need to update your <a href='"+this.pluginspage+"'>Flash Player</a>";
          }
        },
        {config: { 
          autoPlay: false,
          playList: [
            { url: splash, overlayId: 'play' },
            { url: (fallbackVideoFile && !flashembed.isSupported([9,115]) ) ? fallbackVideoFile : videoFile }
          ],
          initialScale: 'scale',
          showMenu: false,
          controlsOverVideo: 'ease'
        }}
      );

	if( err_msg ) {
      var element = document.getElementById( id );
//      element.innerHTML += "<div style='background:#ddd;width:100%;text-align:center;'>"+err_msg+"</div>";
    }
}

