// JavaScript Document
<!-- Rotador de banner

var cuantosbanners = 4 ;
var ahora = new Date()
var segundos = ahora.getSeconds()
var banner = segundos % cuantosbanners;
banner +=1;

if (banner==1) {
texto=" Fanfics en Espaņol ";
url=" http://www.fanfic.es/index.php ";
alt=" Fanfic ES ";
imagen=" http://www.fanfic.es/images/fanfic2.jpg ";
width=" 420 ";
height=" 60 ";
}
if (banner==2) {
texto=" Conoce Saiyajins Heaven ";
url=" http://sjheaven.iespana.es/ ";
alt=" Saiyajin's Heaven ";
imagen=" ../Afiliados/imagenes/afiliados/shbanner.gif ";
width=" 420 ";
height=" 60 ";
}
if (banner==3) {
texto=" FanArts - KissDolls - Downloads y mucho anime ";
url=" http://www.misionanime.net/ ";
alt=" MISIONANIME.NET ";
imagen=" http://www.misionanime.net/asec/imagenes/banners/misionanime-net.gif ";
width=" 420 ";
height=" 60 ";
}
if (banner==4) {
texto=" Anime - Manga - Musica - Webs Todo en un mismo sitio ";
url=" http://www.arlequincreations.org ";
alt=" Arlequin Creations ";
imagen=" http://www.arlequincreations.org/images/b001.gif ";
width=" 420 ";
height=" 60 ";
}

document.write('<center>');
document.write('<a href="' + url + '" target="_blank">');
document.write('<img src="' + imagen + '" width=')
document.write( width + ' height=' + height + ' ');
document.write('alt="' + alt + '" border=0><br>');
document.write('<small>' + texto + '</small></a>');
document.write('</center>');

//-->