function putFocus(elemId) 
{
	var obj = document.getElementById(elemId);
	if (obj) 
	{
		obj.focus();
	}
}