function incrustarSwf(quePelicula){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" width="100%" height="100%">\n');
      document.write('<param name="movie" value="' + quePelicula + '.swf" />\n');
     document.write(' <param name="quality" value="high" />\n');
	 document.write(' <PARAM NAME="allowScriptAccess" VALUE="sameDomain" />\n');
      document.write('<param name="menu" value="false" />\n');
	  document.write('<PARAM NAME="scale" VALUE="noscale" />\n');
	  document.write('<PARAM NAME="salign" VALUE="lt" />\n');
	  document.write('<PARAM NAME="bgcolor" VALUE="#000000" />\n');
     document.write('<embed src="' + quePelicula + '.swf" quality="high" scale="noscale" salign="lt" bgcolor="#000000" width="100%" height="100%" name="temp" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>\n'); 
					 document.write(' </object>\n');
}

