#!/bin/csh -f
#+
# OSIRIS library of scripts
#
# NAME
#      osirisScriptReplyWrapper - wrapper for osirisScriptReply
#
# SYNOPSIS
#     osirisScriptReplyWrapper
#
# DESCRIPTION
#
#     Popup prompt for observer when script times out
#
# ARGUMENTS
#     none
#
# OPTIONS
#
# EXAMPLES
#    osirisScriptReplyWrapper
#
# ENVIRONMENT VARIABLES
#
# FILES
#
# SERVERS & KEYWORDS
#    
#
#
# SCRIPTS CALLED
#
# EXIT STATUS
#     0 - normal exit, no error
#     1 - script aborted by an interrupt
#
#
#-
# Modification History:
# 2021-04-26 jlyke  Original
#######################################

xterm -title "Script Question -- Please Respond" \
 -bg yellow -fg black -e osirisScriptReply

exit

