function SwfControl(CLSID,WIDTH,HEIGHT,URL,MENU,QUALITY,BGCOLOR,CodeBase){

document.write("<object classid='" + CLSID + "'");
document.write(" codebase='"+ CodeBase + "'");
document.write(" width=" + WIDTH + " height=" + HEIGHT + ">");
document.write("<param name=movie value='" + URL +"'>");
document.write("<param name=menu value='" + MENU +"'>");
document.write("<param name=quality value=" + QUALITY + ">");
document.write("<param name=bgcolor value=" + BGCOLOR + ">");
document.write("<embed src='" + URL + "' quality=" + QUALITY + "  ");
document.write(" width=" + WIDTH + " height=" + HEIGHT);
document.write(" type='application/x-shockwave-flash' ");
document.write("pluginspage='http://www.macromedia.com/go/getflashplayer'>");
document.write("</embed>");
document.write("</object>");

}


