<!--
//Pre Caching Over Images function
//Call using CacheOverImages('a','b') etc
function CacheOverImages() {
	if (document.images) {
		numberofargs=arguments.length;
		for (x=0; x<=numberofargs; x++) {
			this[x] = new Image();
			this[x].src="" + arguments[x] + "_over.gif";
		}
	}
}

// Mouse-over function
// Swaps image for same image name with "_over" appended
function MouseOver(image) {
  if(image && document.images && image.src.indexOf("_active.gif")==-1) {
    image.src = image.src.substring(0,(image.src.indexOf("_norm.gif"))) + "_over.gif";
    }
}

// Mouse-out function
// Swaps a mouse-over image for the original image name
function MouseOut(image) {
  if(image && document.images && image.src.indexOf("_over.gif")!=-1) {
    image.src = image.src.substring(0,(image.src.indexOf("_over.gif"))) + "_norm.gif";
    }
}

// Mouse-down function
// Swaps image for same image name with "-active" appended
function MouseDown(image) {
  if(image && document.images && image.src.indexOf("_active.gif")==-1) {
    image.src = image.src.substring(0,(image.src.indexOf("_over.gif"))) + "_active.gif";
    }
}

function go() {
	if (document.form1.prodotti.options[document.form1.prodotti.selectedIndex].value != "") {
		this.location.href = document.form1.prodotti.options[document.form1.prodotti.selectedIndex].value;
  	}
}

//-->