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

html=html+'<div style="width:980px; height:415px; background-color: #004E96; position:absolute">';


 
    html=html+'<div id="desc" style="width:165px; height:415px;';
    html=html+'position:absolute; left:23px; top:0px; background-color:';
    html=html+'#004E96;"></div>';

    html=html+'<div id="proyec" style="width:535px; height:345px;';
    html=html+'position:absolute; left:192px; top:0px; background-color:';
    html=html+'#004E96;"></div>';
  
    html=html+'<div id="imag" style="width:235px; height:415px;';
    html=html+'position:absolute; left:731px; top:0px; background-color:';
    html=html+'#004E96;"></div>';


  html=html+'<div style="width:543px; height:65px; position:absolute; left:188px; top:350px;">';
  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="543" height="65">';
  html=html+'<param name="movie" value="'+swf+'"/>';
  html=html+'<param name="menu" value="false">';
  html=html+'<param name="quality" value="high" />';
  html=html+'<embed src="'+swf+'" menu="false" quality="high"';
  html=html+'pluginspage="http://www.macromedia.com/go/getflashplayer"';
  html=html+'type="application/x-shockwave-flash" width="543" height="65">';
  html=html+'</embed></object></div>';
  
html=html+'</div>';
	
document.getElementById(destino).innerHTML = html; 

} 

