function FormFocus(objField, select)
{
	if (navigator.appName.indexOf("Netscape") == 0) {
		if (self != top) self.focus();
	}
	objField.focus();
	if (select) objField.select();
}

