function convalidaOrdine(){
	var f = document.getElementById('ordFile');
	if (f.value == ""){
		alert("Nessun file associato");	
		return false;
	}
	
	return true;
}

function confermaOrdineP1(){
	var st = document.getElementById('ordStand');
	if(st.value=="0"){
		var f = document.getElementById('ordSup');
		if (f.value == "0"){
			alert("Supporto non specificato");	
			return false;
		}
		var oS = document.getElementById('ordServ');
		var oP = document.getElementById('ordPan');
		
		if (oS.value == "0" || oP.value == "0"){
			if (confirm("Servizio o Pannello non selezionati. Continuare?"))
				return true;
			return false;
		}
	}
	var ac =document.getElementById('ordCon');
	if(!ac.checked){
		alert("Devi accettare le condizioni per poter proseguire");
		return false;
	}	
	return true;
}

