/* this focuses the first element in a form on the page */
(function () {
	var firstForm = document.forms[0];
	var firstControl = null;
	
	if (firstForm != null && firstForm.elements.length > 0) {
		firstControl = firstForm.elements[0];
		
		firstControl.focus();
	}
}());
