#!/bin/csh -f
# modified September 28, 1999.  This utility should not be used from
# this directory anymore, but some bum links may point to it.  So,
# make it a dead end link, but that ends nicely.

echo "Content-type: text/html"
echo ""
cat << XXstuffXX
<html>
<head>
<title>Defunct Plotting and Other Operations menu</title>

<h1>Defunct Plotting and Other Operations Menu</h1>
</head>
<body>
This Plotting and Other Options menu has been replaced with a newer version.
<p>If you need help, please contact the
<a href="/globec-dir/contact_dmo.html">Data Management Office</a>
XXstuffXX

set tmp=$PATH_INFO
setenv OBJ $tmp:r
if (${?QUERY_STRING} && $QUERY_STRING != "") then
  set subsel=$QUERY_STRING
endif

if ($?subsel) then
  echo "<p>Selected object is:  $OBJ($subsel)"
else
  echo "<p>Selected object is:  $OBJ"
endif
echo "<p><hr>"
echo "<i>Last modified: September 28, 1999</i>"
echo "</body>"
echo "</html>"
