function xxx_check_state_Consegna() {
	var theForm = document.getElementById("<%=$orderCtrl->getFormName('mainPageContainer') %>");
	var theControl = theForm.C_EQPERSONALI[1];
	//alert('Ciao!! '+theControl.checked);

	if (!theControl.checked) {
		theControl.focus();
		alert("Selezionare 'no' per attivare l'inserimento dei dati di consegna.");
	}
} // check_state_Consegna

function xxx_check_state_Fattura() {
	//var theForm = document.forms["main"];
	var theForm = document.getElementById("<%=$orderCtrl->getFormName('mainPageContainer') %>");
	var theControl = theForm.F_EQPERSONALI[2];
	//alert('Ciao!! '+theControl.checked);

	if (!theControl.checked) {
		theControl.focus();
		alert("Selezionare 'no' per attivare l'inserimento dei dati di fatturazione.");
	}
} // check_state_Fattura

