	// 
function selectWindow(item) {
   elem=document.getElementById(item);
   visibile=(elem.style.display!="none")
   prefisso=document.getElementById("menu" + item);
   if (visibile) {
   
     elem.style.display="none";
     prefisso.innerHTML="<img src='images/icon_open.gif' title='Apri sottocategorie' alt='Apri sottocategorie' width='9' height='8' border='0' align='right' style='margin-top:8px; margin-right:8px;'>";
    document.forms["formMenu"].elements["selectMenu"].value=0;
    } else {

	if (document.forms["formMenu"].elements["selectMenu"].value == 0) {
	
      document.getElementById(item).style.display="block";
      prefisso.innerHTML="<img src='images/icon_close.gif' title='Chiudi sottocategorie' alt='Chiudi sottocategorie' width='9' height='8' border='0' align='right' style='margin-top:8px; margin-right:8px;'>";
	 document.forms["formMenu"].elements["selectMenu"].value=item;
	 } else {
	 
	 document.getElementById(item).style.display="block";
      prefisso.innerHTML="<img src='images/icon_close.gif' title='Chiudi sottocategorie' alt='Chiudi sottocategorie' width='9' height='8' border='0' align='right' style='margin-top:8px; margin-right:8px;'>";

	 document.getElementById(document.forms["formMenu"].elements["selectMenu"].value).style.display="none";
     document.getElementById("menu" + (document.forms["formMenu"].elements["selectMenu"].value)).innerHTML="<img src='images/icon_open.gif' title='Apri sottocategorie' alt='Apri sottocategorie' width='9' height='8' border='0' align='right' style='margin-top:8px; margin-right:8px;'>";
    var objA=document.forms["formMenu"].elements["selectMenu"];
	 objA.value=item;
	 }
   }
}

function apriRicerca(item) {
	 document.getElementById("ricerca").style.display="none";
      document.getElementById("ricercaA").style.display="block";
}

function chiudiRicerca(item) {
	 document.getElementById("ricerca").style.display="block";
      document.getElementById("ricercaA").style.display="none";
}

function chiudiPaypal(item) {
      document.getElementById("paypal").style.display="none";
}

function apriMarche(item) {
	 document.getElementById("marche").style.display="none";
      document.getElementById("marcheA").style.display="block";
}

function chiudiMarche(item) {
	 document.getElementById("marche").style.display="block";
      document.getElementById("marcheA").style.display="none";
}

function quant_inc(formId,objId){
	var obj=document.forms[formId].elements[objId];
	obj.value++;
}

function quant_dec(formId,objId){
	var obj=document.forms[formId].elements[objId];
	if(obj.value > 1){
		obj.value--;
	}
}
//-->



