function InsertFlash(src,width,height) {

 document.writeln("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"");
 document.writeln(" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\"");
 document.writeln("  width=\"" + width + "\" height=\"" + height + "\">");
 document.writeln("  <param name=\"movie\" value=\"" + src + "\" />");
 document.writeln("  <param name=\"quality\" value=\"high\" />");
 document.writeln("  <param name=\"bgcolor\" value=\"#000000\" />");
 document.writeln("  <param name=\"wmode\" value=\"transparent\" />");
 document.writeln("  <param name=\"loop\" value=\"true\" />");
 document.writeln("  <param name=\"menu\" value=\"false\" />")

 document.writeln("  <embed src=\"" + src + "\" ");
 document.writeln("    quality=\"high\" ");
 document.writeln("    bgcolor=\"#000000\" ");
 document.writeln("    wmode=\"transparent\" ");
 document.writeln("    menu=\"false\" ");
 document.writeln("    width=\"" + width + "\" ");
 document.writeln("    height=\"" + height + "\" ");
 document.writeln("    name=\"flash\" ");
 document.writeln("    allowScriptAccess=\"always\" ");
 document.writeln("    type=\"application/x-shockwave-flash\" ");
 document.writeln(" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" ");
 document.writeln("    />");
 document.writeln("</object>");

}
