

/*
	setLoginFormFocus
	Functions to give the username field focus in the login form.
*/

function setLoginFormFocus() {
	if( document.getElementById('sidelogin') && document.getElementById('user') ) {
		document.getElementById('user').focus();
	}
}
