function embedMov(movURL, movWidth, movHeight, autostart, controller, imgURL) {
  document.write('<object type="application/x-shockwave-flash" width="'+movWidth+'" height="'+movHeight+'" data="'+movURL+'">');
  document.write('<param name="movie" value="'+movURL+'" />');
  document.write('<param name="autoplay" value="'+autostart+'" />');
  document.write('<param name="controller" value="'+controller+'" />');
  document.write('<param name="quality" value="high" />');
  document.write('<param name="wmode" value="transparent" />');
  if (imgURL) {
    document.write('<img alt="" src="'+imgURL+'" width="'+movWidth+'" height="'+movHeight+'" />');
  }
  document.write('</object>');
}

