ciao
DALLA MIA PILLOLA: la funzione per generare numeri random

function random(inf,sup) {
return Math.round(Math.random()*((sup?sup:0)-inf))+inf;
}

/**** per il tuo script ******/
top.location.href="adv"+random(1,5)+".htm";

TUTTO QUI!