function checkLoginForm(){

  var email = ge("Email").value;
  var heslo = ge("Heslo").value;
  
  if(!isEmail(email)){
    alert("Vyplňte, prosím emailovou adresu.");
    focus("Email");
    return false;  
  }else if(isEmpty(heslo)){
    alert("Doplňte heslo.");
    focus("Heslo");
    return false;        
  }
  
  return true;

}

function checkLostPwdForm(){

  var email = ge("Email").value;
  
  if(!isEmail(email)){
    alert("Vyplňte, prosím emailovou adresu.");
    focus("Email");
    return false;  
  }
  
  return true;

}

function setCR(id_StatKlienta){
  var countries = ge("id_StatKlienta");  
  for (var i=0;i<countries.options.length;i++) {
    if(parseInt(countries.options[i].value) == id_StatKlienta){
      countries.options[i].selected = true;
    }        
  }
}
