


function check_submit() {
   var form     = document.getElementById("form");
   var login    = document.getElementById("login");
   var password = document.getElementById("password");

   if (!login.value.length || !password.value.length) {
      alert("Debe ingresar nombre de usuario y contraseņa");
      return false;
   }


   var sistema_mantis  = document.getElementById("sistema_mantis").checked;
   var sistema_calendar= document.getElementById("sistema_calendar").checked;
   var sistema_webmail = document.getElementById("sistema_webmail").checked;

   if (sistema_mantis) {
      form.action = "http://mantis.exec.cl/login.php";
      form.login.name    = 'username';
      form.password.name = 'password';
   } else if (sistema_calendar) {
      form.action        = "https://www.google.com/accounts/ServiceLoginAuth";
      form.login.name    = 'Email';
      form.password.name = 'Passwd';
   } else if (sistema_webmail) {
      form.action        = "http://www.exec.cl/webmail/index.php";
      form.login.name    = '_user';
      form.password.name = '_pass';
   } else {
      alert("Debe seleccionar un sistema");
      return false;
   }
}


