﻿//Function to limit text entered into textarea 
function ctrcerca(a) {
if (  document.cercaristo.comune.value!='Seleziona') {

         document.cercaristo.submit();
         
         
    }
    
if (  document.cercaristo.comune.value=='Seleziona') {
        
         alert("Selezionare un comune!");
       return
    }
         
   
}



//Function to limit text entered into textarea 
function ctrfasciaprezzo(a) {
if (  document.fasciaprezzo.venticinque.checked==1 || document.fasciaprezzo.cinquanta.checked==1 || document.fasciaprezzo.oltrecinquanta.checked==1) {

         document.fasciaprezzo.submit();
         
         
    }
    
if (  document.fasciaprezzo.venticinque.checked==0 & document.fasciaprezzo.cinquanta.checked==0 & document.fasciaprezzo.oltrecinquanta.checked==0) {
        
         alert("Scegliere una fascia di prezzo!");
       return
    }
         
   
}



function ctrnomeristo(a) {
if (  document.nomeristo.nome.value.length>0) {

         document.nomeristo.submit();
         
         
    }
    
if (  document.nomeristo.nome.value.length==0) {
        
         alert("Inserire un nome di Ristorante!");
       return
    }
         
   
}



