//numero de possibilidades

var how_many_ads = 2;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;

if (ad==1) {
//textos dos banners
txt1="";
txt2="";
txt3="";
txt4="";

//url dos banners
url1="http://www.chkrootkit.org";
url2="http://www.temporeal.com.br";
url3="http://www.segurancanacional.com.br";
url4="http://www.novateceditora.com.br/livros/segurancaredes";

// texto alternativo
alt1="Chkrootkit";
alt2="Livraria Tempo Real";
alt3="Livro - Seguranca Nacional";
alt4="Livro - Seguranca em redes sem fio";

// localizacao dos banners
banner1="banners/chkrootkit.gif";
banner2="banners/temporeal.gif";
banner3="banners/seguranca_nacional.gif";
banner4="banners/banner-wifi.png";

// tamanho dos gifs
width="120";
height="60";
}


if (ad==2) {

//textos dos banners

txt1="";
txt2="";
txt3="";
txt4="";

//url dos banners
url1="http://www.chkrootkit.org";
url2="http://www.temporeal.com.br";
url3="http://www.segurancanacional.com.br";
url4="http://www.novateceditora.com.br/livros/segurancaredes¨;

//texto alternativo
alt1="Chkrootkit";
alt2="Livraria Tempo Real";
alt3="Seguranca Nacional";
alt4="Seguranca em Redes sem Fio";

//localizacao dos banners
banner1="banners/chkrootkit.gif";
banner2="banners/temporeal.gif";
banner3="banners/seguranca_nacional.gif";
banner4="banners/banner-wifi.png";


//tamanho dos gifs
width="120";
height="60";
}

document.write('<p align="center">');
document.write('<center>');
document.write('<a href=\"' + url1 + '\" target=\"_top\">');
document.write('<img src=\"' + banner1 + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt1 + '\" border=0>');
document.write('<small>' + txt1 + '</small></a>');
document.write('</center>'); 
document.write('<img src="gifs/bit.gif" width="120" height="4">'); 
document.write('<center>');
document.write('<a href=\"' + url2 + '\" target=\"_top\">');
document.write('<img src=\"' + banner2 + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt2 + '\" border=0>');
document.write('<small>' + txt2 + '</small></a>');
document.write('</center>');
document.write('<img src="gifs/bit.gif" width="120" height="4">'); 
document.write('<center>');
document.write('<a href=\"' + url3 + '\" target=\"_top\">');
document.write('<img src=\"' + banner3 + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt3 + '\" border=0>');
document.write('<small>' + txt3 + '</small></a>');
document.write('</center>');
document.write('<img src="gifs/bit.gif" width="120" height="4">'); 
document.write('<center>');
document.write('<a href=\"' + url4 + '\" target=\"_top\">');
document.write('<img src=\"' + banner4 + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt4 + '\" border=0>');
document.write('<small>' + txt4 + '</small></a>');
document.write('</center>');
document.write('</p>');

