
function step1()
{
if (document.modifica.nazione.options[document.modifica.nazione.selectedIndex].value==-2)
{
var ref="../rete-vendita-risultato.jsp?altro=1";
top.location.href=ref;
}
else
{
var ref="ricerca.jsp?";
ref+="nazione="+document.modifica.nazione.options[document.modifica.nazione.selectedIndex].value;
window.location.href=ref;
}

}


function step2()
{
if (document.modifica.area.options[document.modifica.area.selectedIndex].value==-2)
{
var ref="../rete-vendita-risultato.jsp?altro=1";
top.location.href=ref;
}
else
{
var ref="ricerca.jsp?";
ref+="nazione="+document.modifica.nazione.options[document.modifica.nazione.selectedIndex].value;
if (document.modifica.a.value==1) ref+="&area="+document.modifica.area.options[document.modifica.area.selectedIndex].value;
window.location.href=ref;
}

}

function step3()
{
if (document.modifica.regione.options[document.modifica.regione.selectedIndex].value==-2)
{
var ref="../rete-vendita-risultato.jsp?altro=1";
top.location.href=ref;
}
else
{
var ref="ricerca.jsp?";
ref+="nazione="+document.modifica.nazione.options[document.modifica.nazione.selectedIndex].value;
if (document.modifica.a.value==1) ref+="&area="+document.modifica.area.options[document.modifica.area.selectedIndex].value;
if (document.modifica.r.value==1) ref+="&regione="+document.modifica.regione.options[document.modifica.regione.selectedIndex].value;
window.location.href=ref;
}

}

