//Insere ## Parâmetros de busca de Imagem de Randômica
//       ## Autor Leonardo Arrigoni: leo@arraialdocabo-rj.com.br

function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

imgbg = new makeArray(6);
imgbg[0] = "../publicidade/b_pousada_nautillus.gif";
imgbg[1] = "../publicidade/b_pousada_pavanelli.gif";
imgbg[2] = "../publicidade/b_pousada_eorcas.gif";
imgbg[3] = "../publicidade/b_pousada_paraisodoatlantico.gif";
imgbg[4] = "../publicidade/b_pousada_lymar.gif";
imgbg[5] = "../publicidade/b_gas.gif";



function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
        
var now = new Date()
var seed = now.getTime() % 0xffffffff

document.write('<img src=../publicidade/'+imgbg[rand(imgbg.length)]+' width=400 height=54 border=1 alt=Banners>')