/*
	Totally awesome function that makes things a little funner for you ;-P
*/
function login_form_focus()
{
	var e = document.getElementById('email');
	var p = document.getElementById('password');
	if (!e.value)
		e.focus();
	else
		p.focus();
}