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