function make_swf(swf_url,swf_width,swf_height,swf_bg,swf_wmode,swf_flashvars){
  document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.c-ab#version=8,0,0,0\" width=\""+swf_width+"\" height=\""+swf_height+"\" id=\"external_flash\">");
        document.write("<param name=\"movie\" value=\""+swf_url+"\">");
        document.write("<param name=\"quality\" value=\"high\">");
        document.write("<param name=\"menu\" value=\"false\">");
 document.write("<param name=\"allowScriptAccess\" value=\"always\">");
   if(swf_flashvars!=""){
        document.write("<param name=\"flashVars\" value=\""+swf_flashvars+"\">");
   }
   if(swf_wmode!=""){
   document.write("<param name=\"wmode\" value=\""+swf_wmode+"\">");
   }
   document.write("<param name=\"base\" value=\".\">");
  document.write("<embed src=\""+swf_url+"\" base=\".\" bgcolor=\""+swf_bg+"\" quality=\"high\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\""+swf_width+"\" height=\""+swf_height+"\" allowScriptAccess=\"always\" swLiveConnect=\"true\" name=\"external_flash\"></embed>");
  document.write("</object>");

 }
