
	function GoComb (form, c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11){

		if (hayCriterioComb (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11)){
			form.submit();
		}

	}

	function GoPublicaciones (form, c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11){

		if (hayCriterioPublicaciones (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11)){
			form.submit();
		}

	}

	function GoNovedades (form, c1, c2, c3, c4){

		if (hayCriterioPublicaciones (c1, c2, c3, c4)){
			form.submit();
		}

	}

	function GoKardex (form, c1, c2, c3, c4, c5){

		if (hayCriterioKardex (c1, c2, c3, c4, c5)){
			form.submit();
		}

	}

	function GoEstadoCuenta (form, c1){

		if (hayCriterioEstadoCuenta (c1)){
			form.submit();
		}

	}

	function GoDic (form, c1, c2){

		if (hayCriterioDic (c1, c2)){
			form.submit();
		}

	}