// JavaScript Document

function WriteFlash(path, width, height, opacity) {
  document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+width+"' height='"+height+"' id='popgrafica_site_ar_v03' align='middle'>");
  document.write("<param name='allowScriptAccess' value='sameDomain'>");
  document.write("<param name='movie' value='"+path+"'>");
  document.write("<param name='quality' value='high'>");
  if(opacity == "yes"){
    document.write("<param name='wmode' value='transparent'>");
  }else{
    document.write("<param name='BGCOLOR' value='#ffffff'>");
  }
  document.write("<embed src='"+path+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'"); 
  if(opacity == "yes"){
    document.write(" wmode='transparent'");
  }else{
    document.write(" bgcolor='#ffffff' ");
  }
  document.write("width='"+width+"' height='"+height+"' align='middle' allowScriptAccess='sameDomain'></embed>");
  document.write("</object>");
}
