#!/bin/csh

# Use xine if it is installed - JTN: for RHEL 3
if( -e /usr/bin/xine ) then
  xine --loop --no-logo --no-splash $1
  exit 0
endif

if(`printenv SW_BASE` == "") setenv SW_BASE /usr/local/softWoRx
if(`uname -s` == "Linux") then
xterm -geometry 100x30+00+00 -fg black -bg lightgray -name "MPEG Player" -e ./PlayMPEG $1
else
movieplayer %1
endif

