// JavaScript Document

var theWidth = '480'
var theHeight = '470'

function createPlayer4(theContainer, theFile, go, theWidth, theHeight) {
  var so = new SWFObject('http://fs.net211.com/jwplayer/player-licensed5-1.swf','mpl', theWidth, theHeight,'9');
  so.addParam('allowfullscreen','true');
  so.addParam('allowscriptaccess','always');
  so.addParam('wmode','opaque');
  so.addVariable('file', theFile);
  so.addVariable('backcolor','EEEEEE');
  so.addVariable('frontcolor','000000');
  so.addVariable('lightcolor','AAAAAA');
  so.addVariable('bufferlength','20');
  so.addVariable('plugins','http://fs.net211.com/jwplayer/yt.swf');
  so.addVariable('playlist','bottom');
  so.addVariable('repeat','list');
  so.addVariable('autostart', go);
  so.write(theContainer);
  }
  
  
  
