#!/bin/sh
# Launch a default browser
# License : GNU GPL
# (c) Eko M. Budi, 2004
# (c) Vector Linux, 2004

# Change this to reorder
VLDOC="/usr/doc/VLHelpCenter/index.html"
if [ -f $VLDOC ]; then
   browser $VLDOC
else
   browser http://www.vectorlinux.com
fi


