 function aplicaFlash(swf, width, height, wmode, cache) {
 var noCache = "";
 if (cache == undefined || cache == '') {var noCache = "?" + new Date();}
 if (wmode != "opaque" && wmode != "transparent") {wmode = "transparent";}
 var monta_swf = "";
 
 monta_swf += "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' width='"+ width +"' height='"+ height +"' title=''>";
 monta_swf += "<param name='movie' value='"+ swf + noCache +"'>";
 monta_swf += "<param name='scale' value='noscale' />";
 monta_swf += "<param name='quality' value='high'>";
 monta_swf += "<param name='menu' value='0'>";
 monta_swf += "<param name='wmode' value='"+ wmode +"'>";
 monta_swf += "<embed src='"+ swf + noCache +"' quality='high' scale='noscale' wmode='"+ wmode +"' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+ width +"' height='"+ height +"'></embed>";
 monta_swf += "</object>";
 
 document.write(monta_swf);
}

