#!/bin/csh -f
# inventory_updated

# Sends success message to browser after successful inventory update

# R. Groman December 24, 1996

# Passed parameters are:
#	1 == project


echo "Content-type: text/html"
echo ""

echo "<title>U.S. GLOBEC Georges Bank Inventory Successfully Updated "
echo "</title>"
echo "<h2 align=center>U.S. GLOBEC Georges Bank Inventory Successfully Updated "
echo "</h2>"
#echo " <p>**DEBUG in routine inventory_updated"

echo "<p>Okay!  You've updated the inventory with new data!  "
echo "<p>To verify the updates, "
set url="http://globec.whoi.edu:8080/jg/serv/globec/gb/inventory.html1?project=$1"
echo "<a href="\""$url"\"">click here to view $1 data</a>"
echo "</html>"
exit 0
