function dologin()
{
	thisForm=document.getElementById('login');
	if (thisForm.username.value=='' || thisForm.password.value=='')
	{
		alert('A Felhasználónév és Jelszó mezőket kötelező kitölteni!');
		if (thisForm.username.value=='')
			thisForm.username.focus();
		else
			thisForm.password.focus();
		return;
	}
	thisForm.submit();
	return false;
}
