function validate_login()
{ if (document.getElementById('email_login').value=="")
 { alert("Complectati email-ul!");
  document.getElementById('email').focus();
  return;
 }
	
 if (document.getElementById('password').value=="")
 { alert("Complectati parola!");
   document.getElementById('password').focus();
   return;
 }
	document.getElementById('login').submit();
}