function SeleccOpcionLogin()
 {
  var crc=true;
  //Aca valido los datos de la configuracion
  if(document.GetLogin.usuario.value=="")
   {
    alert("Error,Ingrese el nombre de usuario");
    crc=false;
   }
  if(crc)
   document.GetLogin.submit(); 
 }

function SeleccOpcionCambiar()
 {
  var crc=true;
  //Aca valido los datos de la configuracion
  if(document.GetCambiar.passwordct.value=="" || document.GetCambiar.passwordcf.value=="")
   {
    alert("Error,Ingrese la contraseña y la confirmación");
    crc=false;
   }
  if(crc)
   document.GetCambiar.submit(); 
 }

function EnterCambiar() {
	if (event.keyCode == 13) {
		if (document.GetCambiar.passwordct.value != "" && document.GetCambiar.passwordcf.value!="") {
			SeleccOpcionCambiar();
		}
	}
}  
function Enter() {
	if (event.keyCode == 13) {
		if (document.GetLogin.password.value != "") {
			SeleccOpcionLogin();
		}
	}
} 
