function checkFormEnter()
 {
  elem=document.getElementById('login');
  if (elem.value.length==0) { alert('Please show your login and password'); elem.focus(); return false; }

  elem=document.getElementById('pass');
  if (elem.value.length==0) { alert('Please show your login and password'); elem.focus(); return false; }

  return true;
 }

function findFocus()
{
 document.getElementById('findinput').value='';
}

