// JavaScript Document
var max = 10;
var nrImages = 10;
function makeImages() {
this[0] = "anuncios/rotativos130x380/pd2.jpg";
this[1] = "anuncios/rotativos130x380/pd3.jpg";
this[2] = "anuncios/rotativos130x380/pd4.jpg";
this[3] = "anuncios/rotativos130x380/pd5.jpg";
this[4] = "anuncios/rotativos130x380/pd6.jpg";
this[5] = "anuncios/rotativos130x380/pd7.jpg";
this[6] = "anuncios/rotativos130x380/pd8.jpg";
this[7] = "anuncios/rotativos130x380/pd9.jpg";
this[8] = "anuncios/rotativos130x380/pd10.jpg";
this[9] = "anuncios/rotativos130x380/pd11.jpg";
this.length = nrImages;
}
function makeLinks() {
this[0] = "http://www.revistasgratis.info/anuncios.php?id=anunciante1";
this[1] = "http://www.revistasgratis.info/anuncios.php?id=anunciante2";
this[2] = "http://www.revistasgratis.info/anuncios.php?id=anunciante3";
this[3] = "http://www.revistasgratis.info/anuncios.php?id=anunciante4";
this[4] = "http://www.revistasgratis.info/anuncios.php?id=anunciante5";
this[5] = "http://www.revistasgratis.info/anuncios.php?id=anunciante6";
this[6] = "http://www.revistasgratis.info/anuncios.php?id=anunciante7";
this[7] = "http://www.revistasgratis.info/anuncios.php?id=anunciante8";
this[8] = "http://www.revistasgratis.info/anuncios.php?id=anunciante9";
this[9] = "http://www.revistasgratis.info/anuncios.php?id=anunciante10";
this.length = nrImages;

}
var vetImages = new makeImages();
var vetLinks = new makeLinks();
var x = Math.round(Math.random()*max);
var y = max / nrImages;
for(var cont = 1;cont*y<= max;cont++) {
if (x <= (cont*y)) {
document.write("<a href="+vetLinks[cont-1]+" target=_blank><img src="+vetImages[cont-1]+" width=130 border=0></a>");
break;
}
}

