function SetFocus(obj_id)
{
	cur_obj = document.getElementById(obj_id);
	if(cur_obj != null)
	{
		cur_obj.focus();
	}
}