if (indirizzo == 'http://www.mio_sito.it/') {
location.href = "http://www.mio_sito.it/index2.htm";
}
if (indirizzo == 'http://forum@mio_sito.it') {
location.href = "http://www.mio_sito.it/servizi/forum/index.htm";
}
if (indirizzo == 'http://book@mio_sito.it') {
location.href = "http://www.mio_sito.it/servizi/guestbook/index.htm";
}
else {
location.href = "http://www.mio_sito.it/urlnonesiste.htm";
}
l'errore e' che l'else e' soltanto dell'ultimo if..