//-- Script ideato da Salvatore Cernigliaro
function cercaleggenaz ()
     {
        var a = document.leggenaz.anno2.value;
        var b = document.leggenaz.numero2.value;
        var t = document.leggenaz.tipo.value;
        switch ( t )
      {
        case "1":
        var indirizzo = "http://www.normattiva.it/uri-res/N2Ls?urn:nir:stato:legge:" + a + ";"+ b;
            break
        case "2":
        var indirizzo = "http://www.normattiva.it/uri-res/N2Ls?urn:nir:stato:decreto.legislativo:" + a + ";"+ b;
      }
        location.href = (indirizzo);
      }
//-- END
