function cargarinfo(destino,swf,dib1,dib2,dib3,dib4){ 
var html = ''; 

html=html+'<div style="width:667px; height:400px; 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="667" height="400">';
html=html+'<param name="movie" value="images/'+swf+'"/>';
html=html+'<param name="quality" value="high" />';
html=html+'<embed src="images/'+swf+'" quality="high"';
html=html+'pluginspage="http://www.macromedia.com/go/getflashplayer"';
html=html+'type="application/x-shockwave-flash" width="667" height="400">';
html=html+'</embed></object></div>';


document.getElementById(destino).innerHTML = html; 

} 

