// Realizado por: Fabian Muller modificado por KarlanKas para forosdelweb.com 
// WebExperto.com - Ayuda al webmaster en espa&ntilde;ol 
// Comienzo 

width="760"; //Anchura del banner
height="200"; //Altura del banner

banners= new Array();
banners[0]="http://www.infoviews.com.mx/animaciones/00_Castillo.Chapultepec.swf";
banners[1]="http://www.infoviews.com.mx/animaciones/01_Catemaco.Veracruz.swf";
banners[2]="http://www.infoviews.com.mx/animaciones/02_Kabah.Yucatan.swf";
banners[3]="http://www.infoviews.com.mx/animaciones/03_LagunasMonteBello.Chiapas.swf";
banners[4]="http://www.infoviews.com.mx/animaciones/04_Palenque1.Chiapas.swf";
banners[5]="http://www.infoviews.com.mx/animaciones/05_Palenque2.Chiapas.swf";
banners[6]="http://www.infoviews.com.mx/animaciones/06_Teotihuacan.Mexico.swf";
banners[7]="http://www.infoviews.com.mx/animaciones/07_Xochicalco.Morelos.swf";
banners[8]="http://www.infoviews.com.mx/animaciones/08_Volcanes.Puebla.swf";
banners[9]="http://www.infoviews.com.mx/animaciones/09_Chichen_Itza.Yucatan.swf";
banners[10]="http://www.infoviews.com.mx/animaciones/10_Tulum.Cancun1.swf";
banners[11]="http://www.infoviews.com.mx/animaciones/11_Totomoxtla.Puebla.swf";
banners[12]="http://www.infoviews.com.mx/animaciones/12_Zapotitlan.Puebla.swf";



totalbanners = banners.length;
var ahora = new Date()
var segundos = ahora.getSeconds()
var ad = segundos % totalbanners;
seleccionado=banners[ad];
localizador=seleccionado.lastIndexOf('.');
localizador2=localizador+4
extension=seleccionado.substring(localizador+1,localizador2); 
archivo=seleccionado.substring(0,localizador);

document.write("<center>");
if (extension=="swf"){
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=4,0,0,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\" WMODE=\"transparent\" PLUGINSPAGE=\"http://www.macromedia.com/shockwave/download/index.cgi? P1_Prod_Version=ShockwaveFlash\">');
document.write('</EMBED>');
document.write('</OBJECT>');}
else {document.write('<img src='+seleccionado+' width='+width+' height='+height+'>');
document.write('</center>');}
// Fin