function SetFocus(objID)
{
	obj = document.getElementById(objID);
	if(obj != null) obj.focus();
}