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


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

} 

