// JavaScript Document
function SendLoginForm()
{
	var tfUsername = document.getElementById('tfUsername');
	var tfPasswd = document.getElementById('tfPasswd');
	var send = true;
	
	if ( tfUsername.value == '' )
	{
		send = false;
		return dialogCreate( 'Nem adta meg a felhasználónevet!' );
	}	
	if ( tfPasswd.value == '' )
	{
		send = false;
		return dialogCreate( 'Nem adta meg a jelszót!' );
	}	
	if ( send ) { document.loginForm.submit(); }
}//End of SendForm

function tfUsernameFocus()
{
	var tfUsername = document.getElementById('tfUsername');
	tfUsername.focus();
}//End of tfUsernameFocus

function tfPasswdFocus()
{
	var tfPasswd = document.getElementById('tfPasswd');
	tfPasswd.focus();
}//End of tfPasswdFocus
