function cargarinfo5(destino,swf){ 
var html = ''; 

html=html+'<div style="width:670px; height:150px; position:absolute; left:0px; top:0px;">';
html=html+'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"';
html=html+'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/'; 
html=html+'swflash.cab#version=7,0,19,0" width="670" height="150">';
html=html+'<param name="movie" value="webazules/'+swf+'"/>';
html=html+'<param name="quality" value="high" />';
html=html+'<embed src="webazules/'+swf+'" quality="high"';
html=html+'pluginspage="http://www.macromedia.com/go/getflashplayer"';
html=html+'type="application/x-shockwave-flash" width="670" height="150">';
html=html+'</embed></object></div>';


document.getElementById(destino).innerHTML = html; 

} 

