function SetFocus ()
{
	if ( (document.forms.length > 0) && (document.forms[0].elements.length > 0)) {
		document.forms[0].elements[0].focus ();
	}
}

