	function controlOrder(TID, tipo)
	{		
		var selObjDEST = document.getElementById('destinazione');
		var selIndexDEST = selObjDEST.selectedIndex;	
		var destinazione = selObjDEST.options[selIndexDEST].value;
		
		var selObjPAGAMENTO = document.getElementById('pagamento');
		var selIndexPAGAMENTO = selObjPAGAMENTO.selectedIndex;	
		var pagamento = selObjPAGAMENTO.options[selIndexPAGAMENTO].value;
		
		var totale_merce = document.getElementById('TOTALE_MERCE').value;
		
		if(totale_merce < 11.90)
		{
			alert("ATTENZIONE! \n L'importo totale dell'ordine deve essere almeno € 11,90 - Aggiungere altri libri nel carrello!");
			return false;
		}
		
		if(destinazione == '' || pagamento == '')
		{
			alert('ATTENZIONE! \n Definire il tipo di pagamento e la destinazione!');
			return false;
		}
		
		if(pagamento == 7 && destinazione != 35)
		{
			alert('ATTENZIONE! \n Le spedizioni in contrassegno possono essere effettuate solo in Italia - Paccocelere3');
			return false;
		}
		
		var fattura = document.getElementById('fattura').checked;
		var codfisc = document.getElementById('cf').value;
		var piva = document.getElementById('piva').value;
		
		if(fattura == true)
		{
			if(codfisc == '' && piva == '')
			{
				alert('Per ricevere fattura devi inserire Codice Fiscale e Partita IVA');
				return false;
			}
		}
		
		/*
		if(document.getElementById('SPESE_SPEDIZIONE').value == '0.00')
		{
			alert('Le spese di spedizione non sono state calcolate');
			return false;
		}
		*/
		
		insertOrder(TID, tipo);
	}
