#-------------------------------------------------------------------------------
# Function to print a standard error message.
# $1 = error text, $2 debug switch (ksh set: +x for off, -x for on).
#-------------------------------------------------------------------------------
 
ERROR_MESSAGE()
{
 set "$2"
 MESSAGE="$1"

 print "\nERROR - ${MESSAGE}\n"
}
