#! /bin/sh
# Execute the IDL-based License Administrator.
#

if [ "$IDL_DIR" = "" ]; then
    IDL_DIR=/usr/local/nv5/idl92
    export IDL_DIR
fi

IDL_DEVICE=X
export IDL_DEVICE

if [ ! -f $IDL_DIR/lib/hook/license_administrator.sav ]; then
   echo "	The License Administrator has not been installed.  Please consult the
	installation guide for instructions on installing the Program Files."
   exit 0
fi
 
$IDL_DIR/bin/idl $* -rt=$IDL_DIR/lib/hook/license_administrator.sav
 

