
	function GoComb (form, c1, c2, c3, c4, c5, c6, c7, c8){

		if (hayCriterioComb (c1, c2, c3, c4, c5, c6, c7, c8)){
			form.submit();
		}

	}

	function GoDic (form, c1, c2){

		if (hayCriterioDic (c1, c2)){
			form.submit();
		}

	}
