function figout = hthelp(cmd,link)
%HTHELP Hypertext help utility for MATLAB help and HTML viewing.
%   hthelp is obsolete and will be discontinued.  Use web instead
%   to display an html file inside the MATLAB web browser, or
%   helpview to display inside the Help browser.
%
%   See also WEB, HELPVIEW.

%   Copyright 1984-2004 The MathWorks, Inc.
%   $Revision: 1.44.4.1 $  $Date: 2004/10/22 19:45:00 $

warning('MATLAB:hthelp:deprecated', ...
        'hthelp is obsolete and will be discontinued.  Use web or helpview instead.');
    
web(cmd);

if nargout > 0
   figout = [];
end