function enviarFormulario(metodo){
	var input = document.getElementById("hiddenMethod");
	input.value = metodo;
	return true;
}

function enviarFormularioConfirmacion(metodo, msg){
	if (confirm(msg)) {
		var input = document.getElementById("hiddenMethod");
		input.value = metodo;
		return true;
	} else {
		return false;
	}
}

function activarTexto(objeto, idCampo) {
	var campoTexto = document.getElementById(idCampo);
	
	if(objeto.value == "1") {
		campoTexto.style.display = "block";
	} else if(objeto.value == "0") {
		campoTexto.style.display = "none";
	}
}

function validateCheck(checkBox) { 
	if (!checkBox.checked ){ 
		alert("Debe aceptar las condiciones de alta de la cuenta bancaria"); 
		return false;}
	else{
		
		enviarFormulario('siguienteDatosBancarios');
		document.forms[0].submit();
		return true;
	}
}
