function scrivi(div,c) {
    document.getElementById(div).innerHTML = c;
}
function apri(a,n,s,t,w) {
    getFile('/ajax/box_33_filtri.php?p7='+a+'&p9='+n+'&p5='+s+'&p6='+w+'&p10='+t+'&rand='+Math.random(), showResult);
}
function goOn(s,x)       {
    var dest = document.getElementById('first_url').value;
    var f = new String(document.getElementById('filtri').value);
    var t = document.getElementById(s);
    var main_url = document.getElementById('main_url').value;

    var ok = "";
    var valore = t.value;
    ok = valore.replace(/opt/, "");
    //alert("ok = "+ok);
    if (t.checked) {
        f = f + ok;
    } else {
        f = f.replace(ok, "");
    }
    dest = dest + f + ".html";
    if(f != "" && f != "k") {
        document.location = dest;
    } else {
        document.location = main_url;
    }
    chiudi(x);
}
function goComboOn(s,x,old)       {
    var dest = document.getElementById('first_url').value;
    var f = new String(document.getElementById('filtri').value);
    var t = document.getElementById(s);
    var main_url = document.getElementById('main_url').value;

    var ok = "";
    var valore = t.value;
    ok = valore.replace(/opt/, "");
    if (t.checked) {
        f = f.replace(old, "");
        f = ok + f;
    } else {
        f = f.replace(ok, "");
    }
    dest = dest + f + ".html";
    if(f != "" && f != "k") {
        document.location = dest;
    } else {
        document.location = main_url;
    }
    chiudi(x);
}
function chiudi(n)	{
    var menu = document.getElementById(n);
    menu.style.display = 'none';	
}
