<!--
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(142,271)
listofimages[0].src = "immagini/banner/0.png"
listofimages[1] = new Image(142,271)
listofimages[1].src = "immagini/banner/1.png"
listofimages[2] = new Image(142,271)
listofimages[2].src = "immagini/banner/2.png"
}
}

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

function changepage() {
	if (browsertype == "new") {
	if (banneradcode == 0) {
	newlocation = "http://www.italiapizzaservice.com/offerta/index.php?lingua=it"
	}
	else if (banneradcode == 1) {
	newlocation = "http://www.italiapizzaservice.com/h24.htm"
	}
	else if (banneradcode == 2) {
	newlocation = "http://www.italiapizzaservice.com/pizzeria/"
	}
	location = newlocation
	}
	else if (browsertype == "old") {
	location = "http://www.italiapizzaservice.com/offerta/index.php?lingua=it"
	}
}
