// select first text field

function firstSelect ()
	{
		if (typeof document.forms[0] != 'undefined') {
		if (document.forms[0].getElementsByTagName ('input').length > 0)
			{
				var input = document.forms[0].getElementsByTagName ('input');
		
				// get first text input
				for (i = 0; i < input.length; i ++)
					{
						if (input[i].type == 'text')
							{
								input[i].focus ();
								break; }
					}
			} }
	}

window.onload = firstSelect;


