var ad = 6; //Numero di banner
var rnd = 0; //Numero del banner che sarà mostrato

//Indirizzi associati ai banner
url = new Array();
url[1]="http://www.impakt.it/ita/home.htm";
url[2]="http://www.impakt.it/ita/home.htm";
url[3]="http://www.impakt.it/ita/home.htm";
url[4]="http://www.impakt.it/ita/home.htm";
url[5]="http://www.impakt.it/ita/home.htm";
url[6]="http://www.impakt.it/ita/home.htm";

//Indirizzi (relativi) delle immagini dei banner
img = new Array();
img[1]="http://www.impakt.it/images_index/02_b.jpg";
img[2]="http://www.impakt.it/images_index/02_c.jpg";
img[3]="http://www.impakt.it/images_index/02_d.jpg";
img[4]="http://www.impakt.it/images_index/02_e.jpg";
img[5]="http://www.impakt.it/images_index/02_f.jpg";
img[6]="http://www.impakt.it/images_index/02_g.jpg";

//Messaggi che appaiono sui vari banner
tool = new Array();
tool[1]="Impakt";
tool[2]="Impakt";
tool[3]="Impakt";
tool[4]="Impakt";
tool[5]="Impakt";
tool[6]="Impakt";

//Messaggi che appaiono sulla status bar
stat=new Array();
stat[1]="Impakt";
stat[2]="Impakt";
stat[3]="Impakt";
stat[4]="Impakt";
stat[5]="Impakt";
stat[6]="Impakt";

function rndm(){
rnd = Math.floor(Math.random() * ad) + 1;
setad();
};

function setad(){
window.document.ad.src = img[rnd];
window.document.ad.alt = tool[rnd];
};

function adclick(){
window.open(url[rnd], "", "");
};