function seleziona(id) {
  if (!document.getElementById) return;
  selDiv = document.getElementById(id);
  selDiv.style.color = "#FF0000";
}
function deseleziona(id) {
  if (!document.getElementById) return;
  selDiv = document.getElementById(id);
  selDiv.style.color = "#003c73";
}

function carica() {
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("cambiaImmagine()", 6000);
banneradcode =1;
listofimages = new Array();
listofimages[0] = new Image(220,55);
listofimages[0].src = "banner/bann1.gif";
listofimages[1] = new Image(220,55);
listofimages[1].src = "banner/bann2.gif";
listofimages[2] = new Image(220,55);
listofimages[2].src = "banner/bann3.gif";
     }
}
banneradcode =2;
function cambiaImmagine(){
if (browsertype == "new") {
banneradcode = banneradcode + 1
if (banneradcode > "3") {
banneradcode =2;
}
imagesource ="banner/"+"bann" + banneradcode + ".gif"
window.document.loop.src = imagesource
thetimer = setTimeout("cambiaImmagine()", 10000);
}
else if (browsertype == "old") {
}
}

function cambiaPagina() {
if (browsertype == "new") {
if (banneradcode == 2) {
newlocation = "http://www.futurashop.it"
}
else if (banneradcode == 3) {
newlocation = "http://www.futurashop.it"
}



features = "width=600,height=500,scrollbars=yes,resizable=yes top=0 left=0, menubar=yes, titlebar=yes";
window.open(newlocation,"homepage",features)
//top.location = newlocation
}
else if (browsertype == "old") {
location = "#"
}
}
/////////////////////////////////////////////////////////////////


