//Javascript

function indietro(){
  history.back();
	return false;
}

function popupInformativa(info) {
	window.open(info,"informative","width=600,height=260,scrollbars=yes,resizable=yes");
	return false;
}

function controlloform(){
	if (document.contact.nome.value=="") {
		alert("You forgot to enter your Name");
	} else if (document.contact.cognome.value=="") {
		alert("You forgot to enter your Surname");
	} else if (document.contact.citta.value=="") {
		alert("You forgot to enter your City");
	} else if (!controlla_campo_mail(document.contact.email.value)) {
		return false;
	} else if (document.contact.messaggio.value=="") {
		alert("You forgot to enter the Message");
	} else if(document.contact.accetto[0].checked){
		document.contact.submit();
	} else {
		alert("You should accept our terms and conditions to continue");
	}
	return false;
}

function controlloformlavoraconnoi(){
	if (document.contact.nome.value=="") {
		alert("You forgot to enter your Name");
	} else if (document.contact.cognome.value=="") {
		alert("You forgot to enter your Surname");
	} else if (document.contact.indirizzo.value=="") {
		alert("You forgot to enter your address");
	} else if (document.contact.citta.value=="") {
		alert("You forgot to enter your City");
	} else if (document.contact.cap.value=="") {
		alert("You forgot to enter your Postal Code");
	} else if (!controlla_campo_mail(document.contact.email.value)) {
		return false;
	} else if (document.contact.messaggio.value=="") {
		alert("You forgot to enter Message");
	} else if (document.contact.curriculum.value=="") {
		alert("You forgot to enter your curriculum vitae");
	} else if(document.contact.accetto[0].checked){
		document.contact.submit();
	} else {
		alert("You should accept our terms and conditions to continue");
	}
	return false;
}

function controlloformcostruisci(){
	if (document.formAnagrafica.nome.value=="") {
		alert("You forgot to enter your Name");
	} else if (document.formAnagrafica.cognome.value=="") {
		alert("You forgot to enter your Surname");
	} else if (document.formAnagrafica.ragionesociale.value=="") {
		alert("You forgot to enter your Company name");	
	} else if (document.formAnagrafica.telefono.value=="") {
		alert("You forgot to enter your Telephone");	
	} else if (document.formAnagrafica.localita.value=="") {
		alert("You forgot to enter your City");		
	} else if (!controlla_campo_mail(document.formAnagrafica.email.value)) {
		return false;
	} else if(document.formAnagrafica.accetto[0].checked){
		return true;
	} else {
		alert("You should accept our terms and conditions to continue");
	}
	return false;
}

function controlla_campo_mail(campo) {
  _pattern=/^[\w\-]+(\.?\-?\w+)*@[a-zA-Z0-9]+(\.?\-?[a-zA-Z0-9]+){2,}\.[a-zA-Z]{2,}$/;
  if (_pattern.test(campo)==false) {
    alert("No valid e-mail address entered");
    return false;
  }
  return true;
}  

function controlloponte(){
   if (document.formPonte.h.value=="") {
		alert("You forgot to enter height value");
	} else if (parseInt(document.formPonte.h.value)<0) {
		alert("Height value should be greater than 0");
	} else if (parseInt(document.formPonte.h.value)>10) {
		alert("Height value should be lower or equal to 10");
	} else {
		return true;
	}
	return false;
}

//Fine Javascript
