// JavaScript Document
var setFlag = true;
var locFlag = true;

function validateForm(thisform) {
	if (document.getElementById('localita')) {		
		if (locFlag == false) {
			document.getElementById('localita').style.backgroundColor = "#C70032";
			document.getElementById('locMsg').innerHTML = "Valore non valido";
			document.getElementById('locMsg').style.color = "#C70032";		
			return false;
		} else {
			document.getElementById('localita').style.backgroundColor = "";
			document.getElementById('locMsg').innerHTML = "";		
			document.getElementById('locMsg').style.color = "";		
		}
	}
	
	if (document.getElementById('setID')) {	
		if (setFlag == false) {
			document.getElementById('settore').style.backgroundColor = "#C70032";
			document.getElementById('setMsg').innerHTML = "Valore non valido";
			document.getElementById('setMsg').style.color = "#C70032";
			return false;
		} else {
			document.getElementById('settore').style.backgroundColor = "";
			document.getElementById('setMsg').innerHTML = "";
			document.getElementById('setMsg').style.color = "";		
		}
	}
	
	return true;
}