﻿function Cerca(referrer) {
    var txtCerca = document.getElementById("txtCerca");

    if ((txtCerca != null) && (txtCerca != undefined)) {
        var strRicerca = txtCerca.value;

        if ((strRicerca != "") && (strRicerca != "Ricerca per codice")) {
            location.href = "RicercaCompleta.aspx?q=" + strRicerca + "&ref=" + referrer;
        }
    }
}
