function flashDisplay( filepath, width, height, wmode)
{
  document.write('<object\n');
  document.write('type="application/x-shockwave-flash"');
  document.write('data="' + filepath  + '.swf"');
  document.write('width="' + width + '" height="' + height + '">\n');
  document.write('<param name="loop" value="false" />\n');
  document.write('<param name="wmode" value="' + wmode + '" />\n');
  document.write('<param name="movie" value="' + filepath + '.swf" />\n');
  document.write('</object>\n');
}