//Funcion que inserta un SWF y habilita, para q no tengamos q hacer un click. Toma los valores del nombre del archivo, el ancho y el alto del mismo
function displaySWF(valor,alto,ancho) {
	document.write('<OBJECT codeBase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0 height=');
	document.write(alto);
	document.write(' width=');
	document.write(ancho);
	document.write(' align=absMiddle classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000>');
	document.write('<PARAM NAME="movie" VALUE="');
	document.write(valor);
	document.write('.swf"> <PARAM NAME="quality" VALUE="high"> <embed src="');
	document.write(valor);
	document.write('.swf" width="');
	document.write(ancho);
	document.write('" height="');
	document.write(alto);
	document.write('" align="absmiddle" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed> </OBJECT>'); }