function WriteFlashTag (url, width, height, bgcolor){    document.write("<object type=\"application/x-shockwave-flash\" data=\"" + url + "\" width=\"" + width + "\" height=\"" + height + "\">");    document.write("<param name=\"movie\" value=\"" + url + "\" />");    document.write("<param name=\"quality\" value=\"high\" />");    document.write("<param name=\"menu\" value=\"false\" />");    document.write("<param name=\"scale\" value=\"noscale\" />");    document.write("<param name=\"bgcolor\" value=\"" + bgcolor + "\" />");    document.write("</object>");}
