
var player = null;

      function createPlayer(theVideo, w, h, thePreviewImg) { 
      var flashvars = {
      file:theVideo, 
      autostart:"true",
      author:"Pearson Foundation",
      abouttext:"Copyright Pearson Foundation",
      aboutlink:"http://www.pearsonfoundation.org",
      bufferlength:"5",
      playlistsize:"0",
      skin:"media/mli.swf",
      icons:"none",
      //stretching:"exactfit",
	  //resizing:"true",
      fullscreen:"false",
      displayclick: "PLAY",

      image:thePreviewImg,
      state:"BUFFERING"
      }
      var params = {
      allowfullscreen:"false", 
      allowscriptaccess:"always",
      wmode:"transparent"
      }
      var attributes = {
      id:"player",  
      name:"player"
      }
      swfobject.embedSWF("media/player-licensed.swf", "placeholder", w, h, "9.0.115", false, flashvars, params, attributes);
      }
     
     
     