<!--
function NewWindow(mypage,myname,w,h,scroll){
  var win = null;
  LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
  win = window.open(mypage,myname,settings)
  if(win.window.focus){win.window.focus();}
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='catalogo.php?pagina=2&marca="+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

//Javascript che modifica il colore dello sfondo dei link
function onColor(foo) {
   foo.style.backgroundColor='#011E63';
}

function offColor(foo) {
   foo.style.backgroundColor='#015E94';
}

function changeimage(percorso,targetimg) {
	if (document.images){
		document.images[targetimg].src=percorso
	}
}

function controllaq() {
	if (!((document.forms.adding.quantita.value + 1)>0)) {
		document.forms.adding.quantita.value = 1 ;
	}
}

function piuuno() {
	var tot = (document.forms.adding.quantita.value * 1) + 1;
	document.forms.adding.quantita.value = tot;
}

function menouno() {
	if (document.forms.adding.quantita.value > 1) {
		document.forms.adding.quantita.value = document.forms.adding.quantita.value - 1;
	}
}

function puliscitext(elm){
   if (!elm.base) elm.base = elm.value
   if (elm.value == elm.base) elm.value = "";
   else if (elm.value == "") elm.value = elm.base;
}
//-->