function ShowFlash( TargetElement, url, width, height, FlashVars ){
  html = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + width + '" height="' + height + '">';
  html += '<PARAM NAME=allowFlashAutoInstall VALUE=true>';
  html += '<param name="allowScriptAccess" value="sameDomain" />';
  html += '<PARAM NAME="loop" VALUE="true">';
  html += '<param name="movie" value="' + url + '" />';
  html += '<PARAM NAME="FlashVars" VALUE="' + FlashVars + '">';
  html += '<PARAM NAME="wmode" VALUE="transparent">';
  html += '<param name="quality" value="high" />';
  html += '<param name="bgcolor" value="#ffffff" />';
  html += '<embed src="' + url + '" wmode="transparent" swLiveConnect="true" loop="true" quality="high" bgcolor="#ffffff" width="' + width + '" height="' + height + '" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars=' + FlashVars + ' />';
  html += '</object>';
  var Element = document.getElementById( TargetElement );
  if ( Element ){
    Element.innerHTML = html;
  }
}

