// JavaScript Document
var max = 10;
var nrImages = 6;
function makeImages() {
this[0] = "http://www.bolsonweb.com/bwstats/imagem1.gif";
this[1] = "http://www.bolsonweb.com/bwstats/imagem2.gif";
this[2] = "http://www.bolsonweb.com/bwstats/imagem3.gif";
this[3] = "http://www.bolsonweb.com/bwstats/imagem4.gif";
this[4] = "http://www.bolsonweb.com/bwstats/imagem5.gif";
this[5] = "http://www.bolsonweb.com/bwstats/imagem6.gif";
this.length = nrImages;
}
function makeLinks() {
this[0] = "http://www.bolsonweb.com";
this[1] = "http://www.bolsonweb.com";
this[2] = "http://www.bolsonweb.com";
this[3] = "http://www.bolsonweb.com";
this[4] = "http://www.bolsonweb.com";
this[5] = "http://www.bolsonweb.com";
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]+" border=0></a>");
break;
}
}
