function setFocus()
{

	if (document.forms.length > 0)
	{
		var theForm = document.forms[0];
		if (theForm.id == 'loginForm') {
			if (document.forms[1] != null) {
				theForm = document.forms[1];
			}
			else {
				return;
			}
		}

		var i = 0;
		while ((theForm != null && theForm.elements[i] != null) && (theForm.elements[i].type == "hidden" || theForm.elements[i].id == "userId" || theForm.elements[i].id == "pass" || theForm.elements[i].id == "butLoginSubmit")) { i++; }

		if (theForm.elements[i] == null || theForm.elements[i].type == "select-one") { 
			return;
		}

		theForm.elements[i].focus();
		return;
	}

}
