// $Revision: 1.1 $

/***********************************************************************/
/* S.T.O.F.F.                                                          */
/* ==========                                                          */
/*                                                                     */
/* Copyright (c) 2005 by shveiq                                        */
/* For more information visit: http://www.shveiq.com                   */
/***********************************************************************/

/*********************************************************/
/* Focus the first field of the login screen             */
/*********************************************************/

function login_focus()
{
	if (document.login.My_username.value == '')
		document.login.My_username.focus();
	else
		document.login.My_password.focus();
}

