function showFlash(src, width, height) {
  document.writeln(
    '<object data="' + src + '" width="' +
    width + '" height="' + height +
    '" type="application/x-shockwave-flash">');
  document.writeln(
    '<param name="movie" value="' + src +
    '" />');
  document.writeln(
    '<embed src="' + src + '" width="' +
    width + '" height="' + height +
    '" type="application/x-shockwave-flash" />');
  document.writeln('</object>');
}