#!/usr/bin/ksh

#--------------------------------------------------------------------
#
# Program: R3xterm
#
# Functionality: Check the current hardware and start the local xterm
#
# Hewlett-Packard GmbH
# PSO-LPO 
# Jul '96
#--------------------------------------------------------------------
HARDWARE=`uname -s`
if [ "$HARDWARE" = "SunOS" ]
	then
	/usr/openwin/bin/xterm "$@" &
else
	/usr/bin/X11/xterm "$@" &
fi
