
width="800"; //Anchura del banner 
height="249"; //Altura del banner 

banners= new Array(); 
banners[0]="imagenes/flash/1.swf"; 
banners[1]="imagenes/flash/2.swf"; 
banners[2]="imagenes/flash/3.swf"; 



totalbanners = banners.length; 
var ahora = new Date() 
var segundos = ahora.getSeconds() 
var ad = segundos % totalbanners; 
seleccionado=banners[ad]; 
localizador=seleccionado.lastIndexOf('.'); 
localizador2=localizador+2 
extension=seleccionado.substring(localizador+1,localizador2); 
archivo=seleccionado.substring(0,localizador); 

document.write("<center>"); 

flash=seleccionado;
document.write('<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width=' + width + ' height=' + height + ' CODEBASE="http://active.macromedia.com/flash4/cabs/swflash.cab#version=6,0,29,0">'); 
document.write('<PARAM NAME="MOVIE" VALUE="' + flash + '">'); 
document.write('<PARAM NAME="PLAY" VALUE="true">'); 
document.write('<PARAM NAME="LOOP" VALUE="true">'); 
document.write('<PARAM NAME="QUALITY" VALUE="high">'); 
document.write('<param name="wmode" value="transparent">');
document.write('<EMBED SRC=' + flash + ' width=' + width + ' height=' + height + ' PLAY="true" LOOP="true" QUALITY="high" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi? P1_Prod_Version=ShockwaveFlash" wmode="transparent">'); 
document.write('</EMBED>'); 
document.write('</OBJECT>');



// Fin 
