function embedFlashPlayer(pathTofile, videoName, width, height, divId)
{
  var so = new SWFObject(pathTofile, videoName, width, height, '0');
  so.addParam('allowscriptaccess','always');
  so.addParam('allowfullscreen','true');
  so.addParam('wmode','transparent');
  so.addParam('scale','exactfit');
  so.write(divId);
}
