function goToNewCliente() { document.mainform.frm_registro_step.value = "alta"; document.mainform.submit(); } function sendAltaCliente() { document.mainform.action = "/clientes/saveCliente.asp"; goToNewCliente(); } function goToData() { document.mainform.frm_registro_step.value = "datos"; document.mainform.submit(); } function sendUpdateCliente() { document.mainform.action = "/clientes/saveCliente.asp"; goToData(); } function sendPWClientes() { document.mainform.action = "/clientes/pwClientes.asp"; goToData(); } function goToUnsuscribe() { document.mainform.frm_registro_step.value = "baja"; document.mainform.submit(); } function goToLogin() { document.mainform.action = "/clientes/login.asp"; document.mainform.submit(); } function sendDeleteCliente() { document.mainform.action = "/clientes/delete.asp"; document.mainform.submit(); }