function ql_sp_ctrl()
	{var tuttoOK = true
		if ((document.ql_sp_form.sp_nome.value == '') && (tuttoOK == true))
			{
				window.alert('Tutti i campi sono obbligatori: Nome e cognome mancanti');
				tuttoOK = false
			}
		if ((document.ql_sp_form.sp_carica.value == '') && (tuttoOK == true))
			{
				window.alert('Tutti i campi sono obbligatori: Carica mancante');
				tuttoOK = false
			}
		if ((document.ql_sp_form.sp_azienda.value == '') && (tuttoOK == true))
			{
				window.alert('Tutti i campi sono obbligatori: Azienda mancante');
				tuttoOK = false
			}
		if ((document.ql_sp_form.sp_indirizzo.value == '') && (tuttoOK == true))
			{
				window.alert('Tutti i campi sono obbligatori: Indirizzo mancante');
				tuttoOK = false
			}
		if ((document.ql_sp_form.sp_citta.value == '') && (tuttoOK == true))
			{
				window.alert('Tutti i campi sono obbligatori: Cittą mancante');
				tuttoOK = false
			}
		if ((ControllaMail(document.ql_sp_form.sp_email.value) == 'KO') && (tuttoOK == true))
			{
				window.alert('Tutti i campi sono obbligatori: Inserire un indirizzo email corretto');
				tuttoOK = false
			}
		if ((document.ql_sp_form.sp_telefono.value == '') && (tuttoOK == true))
			{
				window.alert('Tutti i campi sono obbligatori: Telefono mancante');
				tuttoOK = false
			}
		if (tuttoOK == true)
			{document.ql_sp_form.submit();}
	}


function ql_ac_ctrl()
	{var tuttoOK = true
		if ((document.ql_ac_form.ac_nome.value == '') && (tuttoOK == true))
			{
				window.alert('Tutti i campi sono obbligatori: Nome e cognome mancanti');
				tuttoOK = false
			}
		if ((document.ql_ac_form.ac_nasc.value == '') && (tuttoOK == true))
			{
				window.alert('Tutti i campi sono obbligatori: Data di nascita o estremi documento mancanti');
				tuttoOK = false
			}
		if ((!document.ql_ac_form.ac_freelance.checked)){
			if ((document.ql_ac_form.ac_testata.value == '') && (tuttoOK == true))
				{
					window.alert('Tutti i campi sono obbligatori: Testata mancante');
					tuttoOK = false
				}
		} else {
			if ((document.ql_ac_form.ac_collabora.value == '') && (tuttoOK == true))
				{
					window.alert('Avete indicato di essere Free Lance: compilate il campo \'Collabora con\'');
					tuttoOK = false
				}	
		}
		if ((document.ql_ac_form.ac_citta.value == '') && (tuttoOK == true))
			{
				window.alert('Tutti i campi sono obbligatori: Cittą mancante');
				tuttoOK = false
			}
		if ((ControllaMail(document.ql_ac_form.ac_email.value) == 'KO') && (tuttoOK == true))
			{
				window.alert('Tutti i campi sono obbligatori: Inserire un indirizzo email corretto');
				tuttoOK = false
			}
		if ((document.ql_ac_form.ac_telefono.value == '') && (tuttoOK == true))
			{
				window.alert('Tutti i campi sono obbligatori: Telefono mancante');
				tuttoOK = false
			}
		if (tuttoOK == true)
			{document.ql_ac_form.submit();}
	}

function ControllaMail(EmailAddr)
   {
   Filtro = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
   if (Filtro.test(EmailAddr))
      return 'OK';
   else
      {
      return 'KO';
      }
   }
