function verificaForm()
	{
	Invia = true;
	if(trim(document.getElementById('nome').value) == '')
		{
		Invia = false;
		document.getElementById('nome').parentNode.className = 'errori';
		}
	if(trim(document.getElementById('telefono').value) == '')
		{
		Invia = false;
		document.getElementById('telefono').parentNode.className = 'errori';
		}
	if(!document.getElementById('email').value.match(/^(\b[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b)$/i))
		{
		Invia = false;
		document.getElementById('email').parentNode.className = 'errori';
		}
	if(trim(document.getElementById('show_calendario').value) == '')
		{
		Invia = false;
		document.getElementById('show_calendario').parentNode.className = 'errori';
		}
	if(trim(document.getElementById('ora').value) == '')
		{
		Invia = false;
		document.getElementById('ora').parentNode.className = 'errori';
		}
	if(trim(document.getElementById('persone').value) == '')
		{
		Invia = false;
		document.getElementById('persone').parentNode.className = 'errori';
		}

	if(Invia == true)
		document.getElementById('prenotazioni').submit();

	}

function trim(stringa){
    while (stringa.substring(0,1) == ' '){
        stringa = stringa.substring(1, stringa.length);
    }
    while (stringa.substring(stringa.length-1, stringa.length) == ' '){
        stringa = stringa.substring(0,stringa.length-1);
    }
    return stringa;
}
