Ciao ragazzi, seguendo le istruzioni trovate in una guida in questo sito che riguardava la rotazione dei banner ho trovato delle difficoltà..il codice sembra perfetto ma quando entro nella index.html del mio sito visualizzo solo [AD] senza vedere la rotazione dei miei 3 banner inseriti

vi stampo qui il codice di index.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" language="javascript">
<!--
function loadpage() {
browver= parseInt(navigator.appVersion);
browtype = navigator.appName;
browsertype = "old";
if (browtype == "Netscape" && !(browver < 3)) {
browsertype = "new";
}
if (browtype == "Microsoft Internet Explorer" && !(browver < 4)) {
browsertype = "new";
}
if (browsertype == "new") {
thetimer = setTimeout("changeimage()", 3000);
banneradcode = 0;
listofimages = new Array(3);
listofimages[0] = new Image(468,60)
listofimages[0].src = "banner-0.gif"
listofimages[1] = new Image(468,60)
listofimages[1].src = "banner-1.gif"
listofimages[2] = new Image(468,60)
listofimages[2].src = "banner-2.gif"
}
}

function changeimage(){
if (browsertype == "new") {
banneradcode = banneradcode + 1
if (banneradcode == "3") {
banneradcode = 0
}
imagesource = "banner-" + banneradcode + ".gif"
window.document.bannerad.src = imagesource
thetimer = setTimeout("changeimage()", 5000);
}
else if (browsertype == "old") {
}
}

function changepage() {
if (browsertype == "new") {
if (banneradcode == 0) {
newlocation = "http://www.html.it"
}
else if (banneradcode == 1) {
newlocation = "http://www.html.it"
}
else if (banneradcode == 2) {
newlocation = "http://www.html.it"
}
location = newlocation
}
else if (browsertype == "old") {
location = "http://www.html.it"
}
}
// --></script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento senza titolo</title>
</head>

<body bgcolor="white" vlink="blue" link="blue" onload="loadpage()">

<a href="javascript:changepage()">
[img]banner-0.gif[/img]
</a>
</body>
</html>

Le immagini hanno lo stesso nome...Non riesco a capire il perchè mi visualizza [AD]

Grazie in anticipo x l'aiuto! ;-)