function focusObj(obj)
	{
	if (obj.type!="hidden") 
		{
		obj.focus();
		obj.select();
		}		
	}
