/*
$ /js/InsertSWF.js | 2007/10/02 10:50 | 2008/05/15 13:39 $
*/

function InsertSWF(swfId, swfPath, swfVars, swfWidth, swfHeight, swfTitle, swfBgColor) {
  this.Insert = function Insert() {
    document.write(result);
  }

  var result = '<object type="application/x-shockwave-flash" id="'+ swfId +'" data="'+ swfPath +'" width="'+ swfWidth +'" height="'+ swfHeight +'" title="'+ swfTitle +'">';
  result += '  <param name="allowScriptAccess" value="always" />';
  result += '  <param name="movie" value="'+ swfPath +'" />';
  result += '  <param name="quality" value="best" />';
  result += '  <param name="menu" value="false" />';
  result += '  <param name="scale" value="exactfit" />';
  result += '  <param name="wmode" value="transparent" />';
  result += '  <param name="bgcolor" value="'+ swfBgColor +'" />';
  result += '  <param name="flashvars" value="' + swfVars + '" />';
  result += '</object>';
}

