// JavaScript Document

var theWidth = '470'
var theHeight = '24'

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('file', theFile);
  so.addVariable('backcolor','EEEEEE');
  so.addVariable('frontcolor','000000');
  so.addVariable('lightcolor','AAAAAA');
  so.addVariable('bufferlength','15');
  so.addVariable('plugins','googlytics-1');
  so.addVariable('autostart', go);
  so.write(theContainer);
  }
