function stat = nnload(html_file)
%NNLOAD Netscape Navigator Load
%   nnload is obsolete and will be discontinued.  Use web -browser instead
%   to display a web page in the user's system browser.
%
%   See also WEB.

%   Copyright 1984-2004 The MathWorks, Inc.
%   $Revision: 1.1.6.4 $  $Date: 2004/10/22 19:44:09 $

warning('MATLAB:nnload:deprecated', ...
        'nnload is obsolete and will be discontinued.  Use web -browser instead.');
web(html_file, '-browser');
