function show_login_form() {
 if (!document || !document.getElementById) return true;
 document.getElementById('loginfly-table').style.visibility = "visible";
 document.getElementById('loginfly-email').focus();
 return false;
}

function check_login_form() {
 if (!document || !document.getElementById) return true;
 if (!document.getElementById('loginfly-email').value.length) {
  alert('Имя пользователя не может быть пустым!');
  return false;
 }
 if (!document.getElementById('loginfly-password').value.length) {
  alert('Пароль не может быть пустым!');
  return false;
 }
 return true;
}