function ViewSWF(WIDTH,HEIGHT,URL,MENU,QUALITY){

document.write("<object")
document.write(" classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'");
document.write(" codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0'");
document.write(" width=" + WIDTH + " height=" + HEIGHT);
document.write(">");
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=wmode value='transparent' />");
document.write("<embed");
document.write(" src='" + URL + "' quality=" + QUALITY);
document.write(" width=" + WIDTH + " height=" + HEIGHT);
document.write(" wmode='transparent'");
document.write(" type='application/x-shockwave-flash'");
document.write(" pluginspage='http://www.macromedia.com/go/getflashplayer'");
document.write(">");
document.write("</embed>");
document.write("</object>");

}