#!/bin/sh
#
# If netscape isn't available, run lynx in a xiterm
# First try standard path, then local, then other possible paths
#

for netscape in /usr/X11R6/bin/netscape /usr/bin/netscape \
	/usr/local/bin/netscape /usr/local/netscape/netscape \
	/opt/netscape/netscape /opt/bin/netscape ; do
   if [ -x $netscape ] ; then
	exec $netscape /usr/share/afterstep/doc/afterstep.html
   fi
done
for lynx in /usr/bin/lynx /bin/lynx /usr/local/bin/lynx ; do
    if [ -x $lynx ] ; then
  	exec xiterm -bg black -fg peachpuff -sl 500 -vb -e "$lynx /usr/share/afterstep/doc/afterstep.html"
    fi
done
