
  function processAcquistaForm(form){
    if(form.quantita.value > 0){
      form.submit();
      return true;
    }else{
      alert('Quantità non valida!');
      return false;
    }
  }
  
  function CkLoc(){
    try{
      if($('id_cap_comune').value > 0){
        return true;
      }
      alert('Seleziona il comune, dopodichè seleziona il relativo CAP');
      return false;
    }catch(e){
      return false;
    }

  }

  $(document).ready(function(){
    try{
      $('#thumbs a.images').lightBox();
    }catch(e){
      void(0);
    }
    try{
      $('.thumbs a.images').lightBox();
    }catch(e){
      void(0);
    }
    try{
      $('#big a.images').lightBox();
    }catch(e){
      void(0);
    }
    try{
      $('#big2 a.images').lightBox();
    }catch(e){
      void(0);
    }
  });
