function frasi_casuali()
{
	var frasi = new Array("Non dobbiamo guadagnarci la sua fiducia o la sua amicizia: è nato per essere nostro amico (Maeterlinck)", "Il cane é la virtù che, non potendo farsi uomo, s'é fatta bestia. (Victor Hugo)", "Chi non ha mai posseduto un cane, non può sapere che cosa significa essere amato (Schopenhauer)" , "Quando non siamo in forma come al solito non ce lo fanno notare. Per loro siamo sempre gli stessi.", "Dai un cane a un bambino e gli procurerai un compagno di giochi sempre fedele e leale. (Braley)", "Un cane smarrito è la cosa più triste che possa incontrare lo sguardo di una persona che comprende e ama gli animali.", "Il paradiso si ottiene per dono; se fosse per merito, il vostro cane ci andrebbe di sicuro e voi ne restereste fuori. (Mark Twain)", "Provate a guardare negli occhi il vostro cane e affermare che non ha un'anima. (Victor Hugo)", "Alla zampa di ogni uccello che vola è legato il filo dell'infinito. (Victor Hugo)", "L'uomo è l'unico animale che arrossisce, ma è anche l'unico che ne ha bisogno. (Mark Twain)", "Se fosse possibile dotare i gatti di ali, non si accontenterebbero di essere uccelli, sarebbero angeli. (Dick Shawn)", "La fedeltà di un cane è un dono prezioso che impone obblighi morali non meno impegnativi dell'amicizia con una creatura umana. (K. Lorenz)", "Il grande silenzio dei cani, ci consola delle futili parole degli uomini. (Chaumont)", "I cani quando amano, amano in modo costante, inalterabile, fino all'ultimo respiro. (E.Von Arnim)", "Un cane può trovare, perfino nel più inutile di noi, qualcosa in cui credere. (E.V.Lucas)", "I cani non mentono su ciò che provano, perché non possono mentire sulle emozioni. Nessuno ha mai visto un cane triste che fingesse di essere felice... (J. Masson)", "Non importa se non avete denaro o possedimenti, il solo fatto di possedere un cane vi rende ricchi.(L. Sabin)");
	
	var index=Math.floor(Math.random()*frasi.length);
	
	index=(index==(frasi.length-1))?0:index++;
	
	document.getElementById('frasi').innerHTML= "<b><em>"+frasi[index]+"</em></b>";
	
}

function check(campo)
{
   nome = document.cont.nome.value;
   cognome = document.cont.cognome.value;
   email = document.cont.email.value;
   
	if(nome.length == 0)
	{
		document.getElementById("nome_o").style.display = "none";
		document.getElementById("nome_b").style.display = "block";
	}
	else
	{
		document.getElementById("nome_b").style.display = "none";
		document.getElementById("nome_o").style.display = "block";
	}
	
	if(cognome.length == 0)
	{
			
		document.getElementById("cognome_o").style.display = "none";
		document.getElementById("cognome_b").style.display = "block";
	}
	else
	{
		document.getElementById("cognome_b").style.display = "none";
		document.getElementById("cognome_o").style.display = "block";
	}
	
	if(email.length == 0)
	{
		document.getElementById("email_o").style.display = "none";	
		document.getElementById("email_b").style.display = "block";
	}
	else 
	{
		//se è sbagliato il formato email da ancora errore
		var filtro = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
		if(!filtro.test(email))
		{
			document.getElementById("email_b").style.display = "block";
			document.getElementById("email_o").style.display = "none";	
		}
		//altrimenti mostra div OK
		else
		{
			document.getElementById("email_b").style.display = "none";
			document.getElementById("email_o").style.display = "block";
		}
	}
	
}


function check_all(form)
{	
   nome = document.cont.nome.value;
   cognome = document.cont.cognome.value;
   email = document.cont.email.value;
   messaggio = document.cont.messaggio.value;
	
	if( nome.length != 0 && cognome.length != 0 && email.length != 0 && messaggio.length != 0)
	{
		var filtro = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
		if(!filtro.test(email))
		{
			document.getElementById("email_b").style.display = "block";
			document.getElementById("email_o").style.display = "none";	
			return false;
		}
		//altrimenti OK
		else
		{
			return true;
		}
		return true;
	}
	else
	{
		alert ("Attenzione inserisci i campi richiesti");
		return false;
	}
		
}


function check_adozione(campo)
{
   nome = document.richiesta_adozione.nome.value;
   cognome = document.richiesta_adozione.cognome.value;
   email = document.richiesta_adozione.email.value;
   telefono = document.richiesta_adozione.telefono.value;
   citta = document.richiesta_adozione.citta.value;
   messaggio = document.richiesta_adozione.messaggio.value;
   
	if(nome.length == 0)
	{
		document.getElementById("nome_o").style.display = "none";
		document.getElementById("nome_b").style.display = "block";
	}
	else
	{
		document.getElementById("nome_b").style.display = "none";
		document.getElementById("nome_o").style.display = "block";
	}
	
	if(cognome.length == 0)
	{
			
		document.getElementById("cognome_o").style.display = "none";
		document.getElementById("cognome_b").style.display = "block";
	}
	else
	{
		document.getElementById("cognome_b").style.display = "none";
		document.getElementById("cognome_o").style.display = "block";
	}
	
	if(telefono.length == 0)
	{
			
		document.getElementById("telefono_o").style.display = "none";
		document.getElementById("telefono_b").style.display = "block";
	}
	else
	{
		document.getElementById("telefono_b").style.display = "none";
		document.getElementById("telefono_o").style.display = "block";
	}
	
	if(citta.length == 0)
	{
			
		document.getElementById("citta_o").style.display = "none";
		document.getElementById("citta_b").style.display = "block";
	}
	else
	{
		document.getElementById("citta_b").style.display = "none";
		document.getElementById("citta_o").style.display = "block";
	}
	
	if(messaggio.length == 0)
	{
			
		document.getElementById("messaggio_o").style.display = "none";
		document.getElementById("messaggio_b").style.display = "block";
	}
	else
	{
		document.getElementById("messaggio_b").style.display = "none";
		document.getElementById("messaggio_o").style.display = "block";
	}
	
	if(email.length == 0)
	{
		document.getElementById("email_o").style.display = "none";	
		document.getElementById("email_b").style.display = "block";
	}
	else 
	{
		//se è sbagliato il formato email da ancora errore
		var filtro = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
		if(!filtro.test(email))
		{
			document.getElementById("email_b").style.display = "block";
			document.getElementById("email_o").style.display = "none";	
		}
		//altrimenti mostra div OK
		else
		{
			document.getElementById("email_b").style.display = "none";
			document.getElementById("email_o").style.display = "block";
		}
	}
	
}


function check_all_adozione(form)
{	
   nome = document.richiesta_adozione.nome.value;
   cognome = document.richiesta_adozione.cognome.value;
   email = document.richiesta_adozione.email.value;
   telefono = document.richiesta_adozione.telefono.value;
   citta = document.richiesta_adozione.citta.value;
   messaggio = document.richiesta_adozione.messaggio.value;
	
	if( nome.length != 0 && cognome.length != 0 && email.length != 0 && telefono.length != 0 && citta.length != 0 && messaggio.length != 0)
	{
		var filtro = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
		if(!filtro.test(email))
		{
			document.getElementById("email_b").style.display = "block";
			document.getElementById("email_o").style.display = "none";	
			return false;
		}
		//altrimenti OK
		else
		{
			return true;
		}
		return true;
	}
	else
	{
		alert ("Attenzione inserisci i campi richiesti");
		return false;
	}
		
}


function check_all(form)
{	
   nome = document.cont.nome.value;
   cognome = document.cont.cognome.value;
   email = document.cont.email.value;
   messaggio = document.cont.messaggio.value;
	
	if( nome.length != 0 && cognome.length != 0 && email.length != 0 && messaggio.length != 0)
	{
		var filtro = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
		if(!filtro.test(email))
		{
			document.getElementById("email_b").style.display = "block";
			document.getElementById("email_o").style.display = "none";	
			return false;
		}
		//altrimenti OK
		else
		{
			return true;
		}
		return true;
	}
	else
	{
		alert ("Attenzione inserisci i campi richiesti");
		return false;
	}
		
}


function check_adozione(campo)
{
   nome = document.richiesta_adozione.nome.value;
   cognome = document.richiesta_adozione.cognome.value;
   email = document.richiesta_adozione.email.value;
   telefono = document.richiesta_adozione.telefono.value;
   citta = document.richiesta_adozione.citta.value;
   messaggio = document.richiesta_adozione.messaggio.value;
   
	if(nome.length == 0)
	{
		document.getElementById("nome_o").style.display = "none";
		document.getElementById("nome_b").style.display = "block";
	}
	else
	{
		document.getElementById("nome_b").style.display = "none";
		document.getElementById("nome_o").style.display = "block";
	}
	
	if(cognome.length == 0)
	{
			
		document.getElementById("cognome_o").style.display = "none";
		document.getElementById("cognome_b").style.display = "block";
	}
	else
	{
		document.getElementById("cognome_b").style.display = "none";
		document.getElementById("cognome_o").style.display = "block";
	}
	
	if(telefono.length == 0)
	{
			
		document.getElementById("telefono_o").style.display = "none";
		document.getElementById("telefono_b").style.display = "block";
	}
	else
	{
		document.getElementById("telefono_b").style.display = "none";
		document.getElementById("telefono_o").style.display = "block";
	}
	
	if(citta.length == 0)
	{
			
		document.getElementById("citta_o").style.display = "none";
		document.getElementById("citta_b").style.display = "block";
	}
	else
	{
		document.getElementById("citta_b").style.display = "none";
		document.getElementById("citta_o").style.display = "block";
	}
	
	if(messaggio.length == 0)
	{
			
		document.getElementById("messaggio_o").style.display = "none";
		document.getElementById("messaggio_b").style.display = "block";
	}
	else
	{
		document.getElementById("messaggio_b").style.display = "none";
		document.getElementById("messaggio_o").style.display = "block";
	}
	
	if(email.length == 0)
	{
		document.getElementById("email_o").style.display = "none";	
		document.getElementById("email_b").style.display = "block";
	}
	else 
	{
		//se è sbagliato il formato email da ancora errore
		var filtro = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
		if(!filtro.test(email))
		{
			document.getElementById("email_b").style.display = "block";
			document.getElementById("email_o").style.display = "none";	
		}
		//altrimenti mostra div OK
		else
		{
			document.getElementById("email_b").style.display = "none";
			document.getElementById("email_o").style.display = "block";
		}
	}
	
}



function check_adozione_distanza()
{
   nome = document.modulo.nome.value;
   cognome = document.modulo.cognome.value;
   indirizzo = document.modulo.indirizzo.value;
   citta = document.modulo.citta.value;
   cap = document.modulo.cap.value;
   provincia = document.modulo.provincia.value;
   email = document.modulo.email.value;
   telefono = document.modulo.telefono.value;
  
	if(nome.length == 0)
	{
		document.getElementById("nome_o").style.display = "none";
		document.getElementById("nome_b").style.display = "block";
	}
	else
	{
		document.getElementById("nome_b").style.display = "none";
		document.getElementById("nome_o").style.display = "block";
	}
	
	if(cognome.length == 0)
	{
			
		document.getElementById("cognome_o").style.display = "none";
		document.getElementById("cognome_b").style.display = "block";
	}
	else
	{
		document.getElementById("cognome_b").style.display = "none";
		document.getElementById("cognome_o").style.display = "block";
	}
	
	
	if(indirizzo.length == 0)
	{
			
		document.getElementById("indirizzo_o").style.display = "none";
		document.getElementById("indirizzo_b").style.display = "block";
	}
	else
	{
		document.getElementById("indirizzo_b").style.display = "none";
		document.getElementById("indirizzo_o").style.display = "block";
	}
	
	if(telefono.length == 0)
	{
			
		document.getElementById("telefono_o").style.display = "none";
		document.getElementById("telefono_b").style.display = "block";
	}
	else
	{
		document.getElementById("telefono_b").style.display = "none";
		document.getElementById("telefono_o").style.display = "block";
	}
	
	if(citta.length == 0)
	{
			
		document.getElementById("citta_o").style.display = "none";
		document.getElementById("citta_b").style.display = "block";
	}
	else
	{
		document.getElementById("citta_b").style.display = "none";
		document.getElementById("citta_o").style.display = "block";
	}
	
	
	if(provincia.length == 0)
	{
			
		document.getElementById("provincia_o").style.display = "none";
		document.getElementById("provincia_b").style.display = "block";
	}
	else
	{
		document.getElementById("provincia_b").style.display = "none";
		document.getElementById("provincia_o").style.display = "block";
	}
	
	if(cap.length == 0)
	{
			
		document.getElementById("cap_o").style.display = "none";
		document.getElementById("cap_b").style.display = "block";
	}
	else
	{
		document.getElementById("cap_b").style.display = "none";
		document.getElementById("cap_o").style.display = "block";
	}
	
	if(email.length == 0)
	{
		document.getElementById("email_o").style.display = "none";	
		document.getElementById("email_b").style.display = "block";
	}
	else 
	{
		//se è sbagliato il formato email da ancora errore
		var filtro = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
		if(!filtro.test(email))
		{
			document.getElementById("email_b").style.display = "block";
			document.getElementById("email_o").style.display = "none";	
		}
		//altrimenti mostra div OK
		else
		{
			document.getElementById("email_b").style.display = "none";
			document.getElementById("email_o").style.display = "block";
		}
	}
	
}


function check_adozione_distanza_all()
{	

	nome = document.modulo.nome.value;
    cognome = document.modulo.cognome.value;
    indirizzo = document.modulo.indirizzo.value;
    citta = document.modulo.citta.value;
    cap = document.modulo.cap.value;
    provincia = document.modulo.provincia.value;
    email = document.modulo.email.value;
    telefono = document.modulo.telefono.value;
	
	if(nome.length != 0 && cognome.length != 0 && indirizzo.length != 0 && citta.length != 0 && cap.length != 0 && provincia.length != 0 && email.length != 0 && telefono.length != 0)
	{
		var filtro = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
		if(!filtro.test(email))
		{
			document.getElementById("email_b").style.display = "block";
			document.getElementById("email_o").style.display = "none";	
			return false;
		}
		//altrimenti OK
		else
		{
			return true;
		}
		
		return true;
	
	}
	else
	{
		return false;
	}
		
}



//funzione AJAX ricerca adozioni
function show_sesso() 
{
	var xmlHttp;
  try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      try
        {
        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
      catch (e)
        {
        alert("Il tuo browser non supporta AJAX!");
        return false;
        }
      }
    } //procedura x inizializzare l'oggetto XMLHTTPRequest in base al browser che si utilizza
	
	xmlHttp.onreadystatechange = function() //al cambiamento di stato fai partire questa funzione
	{
		if(xmlHttp.readyState == 4 && xmlHttp.status == 200) //controlla se la richiesta è stata inviata e se la risposta è OK
		{ 
			document.getElementById("result").style.display = "block";
			document.getElementById("result").innerHTML = xmlHttp.responseText; //stampa nello span la risposta del server (ovvero lo script ris.php)
		}
		
	}
		var sesso;
		sesso = document.ricerca.sesso.options[document.ricerca.sesso.selectedIndex].text; //prende il valore della select categoria
		url = "search.php?sesso="+sesso+"&cmd=sesso"; //passa il valore username alla pagina php
		xmlHttp.open("GET", url, true); //invoca il server
		xmlHttp.send(null); //si mette null perchè a inviare i parametri ci pensa il metodo GET del form
}

//funzione AJAX ricerca adozioni
function show_taglia() 
{
	var xmlHttp;
  try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      try
        {
        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
      catch (e)
        {
        alert("Il tuo browser non supporta AJAX!");
        return false;
        }
      }
    } //procedura x inizializzare l'oggetto XMLHTTPRequest in base al browser che si utilizza
	
	xmlHttp.onreadystatechange = function() //al cambiamento di stato fai partire questa funzione
	{
		if(xmlHttp.readyState == 4 && xmlHttp.status == 200) //controlla se la richiesta è stata inviata e se la risposta è OK
		{ 
			document.getElementById("result").style.display = "block";
			document.getElementById("result").innerHTML = xmlHttp.responseText; //stampa nello span la risposta del server (ovvero lo script ris.php)
		}
		
	}
		var taglia;
		taglia = document.ricerca.taglia.options[document.ricerca.taglia.selectedIndex].text; //prende il valore della select categoria
		url = "search.php?taglia="+taglia+"&cmd=taglia"; //passa il valore taglia alla pagina php
		xmlHttp.open("GET", url, true); //invoca il server
		xmlHttp.send(null); //si mette null perchè a inviare i parametri ci pensa il metodo GET del form
}

//funzione AJAX ricerca adozioni
function ricerca_completa() 
{
	var xmlHttp;
  try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      try
        {
        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
      catch (e)
        {
        alert("Il tuo browser non supporta AJAX!");
        return false;
        }
      }
    } //procedura x inizializzare l'oggetto XMLHTTPRequest in base al browser che si utilizza
	
	xmlHttp.onreadystatechange = function() //al cambiamento di stato fai partire questa funzione
	{
		if(xmlHttp.readyState == 4 && xmlHttp.status == 200) //controlla se la richiesta è stata inviata e se la risposta è OK
		{ 
			document.getElementById("result").style.display = "block";
			document.getElementById("result").innerHTML = xmlHttp.responseText; //stampa nello span la risposta del server (ovvero lo script ris.php)
		}
		
	}
		var sesso;
		var taglia;
		sesso = document.ricerca.sesso.options[document.ricerca.sesso.selectedIndex].text; //prende il valore della select categoria
		taglia = document.ricerca.taglia.options[document.ricerca.taglia.selectedIndex].text; //prende il valore della select categoria
		url = "search.php?sesso="+sesso+"&taglia="+taglia+"&cmd=both"; //passa il valore username alla pagina php
		xmlHttp.open("GET", url, true); //invoca il server
		xmlHttp.send(null); //si mette null perchè a inviare i parametri ci pensa il metodo GET del form
}


//funzione AJAX ricerca adozioni
function show_razza() 
{
	var xmlHttp;
  try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      try
        {
        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
      catch (e)
        {
        alert("Il tuo browser non supporta AJAX!");
        return false;
        }
      }
    } //procedura x inizializzare l'oggetto XMLHTTPRequest in base al browser che si utilizza
	
	xmlHttp.onreadystatechange = function() //al cambiamento di stato fai partire questa funzione
	{
		if(xmlHttp.readyState == 4 && xmlHttp.status == 200) //controlla se la richiesta è stata inviata e se la risposta è OK
		{ 
			document.getElementById("result").style.display = "block";
			document.getElementById("result").innerHTML = xmlHttp.responseText; //stampa nello span la risposta del server (ovvero lo script ris.php)
		}
		
	}
		var razza;
		razza = document.ricerca.razza.options[document.ricerca.razza.selectedIndex].text; //prende il valore della select categoria
		url = "search.php?razza="+razza+"&cmd=razza"; //passa il valore username alla pagina php
		xmlHttp.open("GET", url, true); //invoca il server
		xmlHttp.send(null); //si mette null perchè a inviare i parametri ci pensa il metodo GET del form
}


//funzione AJAX ricerca adozioni
function show_all() 
{
	var xmlHttp;
  try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      try
        {
        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
      catch (e)
        {
        alert("Il tuo browser non supporta AJAX!");
        return false;
        }
      }
    } //procedura x inizializzare l'oggetto XMLHTTPRequest in base al browser che si utilizza
	
	xmlHttp.onreadystatechange = function() //al cambiamento di stato fai partire questa funzione
	{
		if(xmlHttp.readyState == 4 && xmlHttp.status == 200) //controlla se la richiesta è stata inviata e se la risposta è OK
		{ 
			document.getElementById("result").style.display = "block";
			document.getElementById("result").innerHTML = xmlHttp.responseText; //stampa nello span la risposta del server (ovvero lo script ris.php)
		}
		
	}
		url = "search.php?cmd=all"; //passa il valore username alla pagina php
		xmlHttp.open("GET", url, true); //invoca il server
		xmlHttp.send(null); //si mette null perchè a inviare i parametri ci pensa il metodo GET del form
}



function check_commento(campo)
{
   nome = document.insert_commento.nome.value;
   
	if(nome.length == 0)
	{
		document.getElementById("nome_o").style.display = "none";
		document.getElementById("nome_b").style.display = "block";
	}
	else
	{
		document.getElementById("nome_b").style.display = "none";
		document.getElementById("nome_o").style.display = "block";
	}
}

//inserisce commento in db
function show_commenti(id_get, tipo_get)
{
	var xmlHttp;
  try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      try
        {
        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
      catch (e)
        {
        alert("Il tuo browser non supporta AJAX!");
        return false;
        }
      }
    } //procedura x inizializzare l'oggetto XMLHTTPRequest in base al browser che si utilizza
	
	xmlHttp.onreadystatechange = function() //al cambiamento di stato fai partire questa funzione
	{
		if(xmlHttp.readyState == 4 && xmlHttp.status == 200) //controlla se la richiesta è stata inviata e se la risposta è OK
		{ 
			document.getElementById("show_commenti").innerHTML = xmlHttp.responseText; //stampa nello span la risposta del server (ovvero lo script ris.php)
		}
		
	}
		var id= id_get;
		var tipo = tipo_get;
		url = "gestione_commenti.php?id="+id+"&tipo="+tipo+""; //passa il valore
		xmlHttp.open("GET", url, true); //invoca il server
		xmlHttp.send(null); //si mette null perchè a inviare i parametri ci pensa il metodo GET del form
}
