function SubmitAirHotelDynamicFormLoadingValidations(formId)
{
	try
	{
		MultipleValidTextValueFocusedMsg("fldOrigem", "Campo%20de%20preenchimento%20obrigat%C3%B3rio.", minIndex, maxIndex);
		MultipleValidTextValueFocusedMsg("fldDestino", "Campo%20de%20preenchimento%20obrigat%C3%B3rio.", minIndex, maxIndex);
		MultipleValidDatesFocusedMsg("fldPartidaDia", "fldPartidaMes", "fldPartidaAno", "Data%20inv%C3%A1lida.", minIndex, maxIndex);		
		document.getElementById(formId).submit();
	}
	catch (exception)
	{
		alert(decodeURI(exception.desc));
		document.getElementsByName(exception.id)[exception.index].focus();
		return false;
	}
}
