#!/bin/sh
# browse wrapper 

#set -x

if [ "`which netscape`" ] && [ "$DISPLAY" ] ; then
	exec netscape $@ 
elif [ "`which lynx`" ] ; then
	exec lynx $@
else
	exec quark $@
fi
