function ControllaForm1() {

var email_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
var controllo=false; 

document.form1.nome.style.background = "#eeeeee";
document.form1.cognome.style.background = "#eeeeee";
document.form1.indirizzo.style.background = "#eeeeee";
document.form1.localita.style.background = "#eeeeee";
document.form1.provincia.style.background = "#eeeeee";
document.form1.email.style.background = "#eeeeee";
document.form1.telefono.style.background = "#eeeeee";
document.form1.testo.style.background = "#eeeeee";
document.form1.attachment.style.background = "#eeeeee";

if (document.form1.nome.value == "" )
{
controllo=true;
alert("Inserire il nome");
document.form1.nome.style.background = "#ffffaa";
document.form1.nome.focus();
}
else if (document.form1.cognome.value == "" )
{
controllo=true;
alert("Inserire il cognome");
document.form1.cognome.style.background = "#ffffaa";
document.form1.cognome.focus();
}
else if (document.form1.indirizzo.value == "" )
{
controllo=true;
alert("Inserire l'indirizzo");
document.form1.indirizzo.style.background = "#ffffaa";
document.form1.indirizzo.focus();
}
else if (document.form1.localita.value == "" )
{
controllo=true;
alert("Inserire la localita'");
document.form1.localita.style.background = "#ffffaa";
document.form1.localita.focus();
}
else if (document.form1.provincia.value == "" )
{
controllo=true;
alert("Inserire la provincia");
document.form1.provincia.style.background = "#ffffaa";
document.form1.provincia.focus();
}
else if (!email_reg_exp.test(document.form1.email.value) || (document.form1.email.value == "") || (document.form1.email.value == "undefined")) 
{
controllo=true;
alert("Inserire una email valida");
document.form1.email.style.background = "#ffffaa";
document.form1.email.focus();
}
else if (document.form1.telefono.value == "" )
{
controllo=true;
alert("Inserire il telefono");
document.form1.telefono.style.background = "#ffffaa";
document.form1.telefono.focus();
}
else if (document.form1.testo.value == "" && document.form1.attachment.value == "")
{
controllo=true;
alert("Inserire le proprie esperienze lavorative oppure allegare un curriculum vitae");
document.form1.testo.style.background = "#ffffaa";
document.form1.attachment.style.background = "#ffffaa";
}

if (controllo){return false}else{return true} 
}



var checkobj

function accetta(el){
checkobj=el
	if (document.all||document.getElementById){
		for (i=0;i<checkobj.form.length;i++){  
var tempobj=checkobj.form.elements[i]
	if(tempobj.type.toLowerCase()=="submit")
tempobj.disabled=!checkobj.checked
							}
						}
					}

function disabilita(el){
	if (!document.all&&!document.getElementById){
			if (window.checkobj&&checkobj.checked)
return true
		else{
alert("Per favore accetta i termini del contratto")
return false
						}
					}
				}

