

	function GoComb (form, c1, c2, c3, c4, c5, c6, c7){

		if (hayCriterioComb (c1, c2, c3, c4, c5, c6, c7)){
			form.submit();
		}

	}


	function GoAdq (form, c1, c2, c3){

		if (hayCriterioAdq (c1, c2, c3)){
			form.submit();
		}

	}


	function GoCardex (form, c1, c2, c3){

		if (hayCriterioCardex (c1, c2, c3)){
			form.submit();
		}

	}


	function GoDic (form, c1, c2){

		if (hayCriterioDic (c1, c2)){
			form.submit();
		}

	}


	function GoMail (form, c1, c2, c3){

		if (hayCriterioMail (c1, c2, c3)){
			form.submit();
		}

	}