#!/bin/sh
echo "Content-type: text/html"
echo
echo "<head><title>M&ST website search results</title></head>"
echo "<body background=\"http://mst.hv.boeing.com/imgs/pa01.jpg\" vlink=\"#008800\">"
echo "<center><h2>M&amp;ST website search results</h2>"
echo "<b>Search string:</b> <i>$WWW_searchfor</i></center>"
echo "<pre>"
/usr/local/etc/httpd/htdocs/swish/swish -f /usr/local/etc/httpd/htdocs/swish/site.swish -w $WWW_searchfor | /usr/local/etc/httpd/htdocs/uncgi-bin/build_page
echo "</pre>"
echo "<form method=POST action=\"http://mst.hv.boeing.com/cgi-bin/uncgi/site_search\">"
echo "Search for: <input type=text size=70 name=searchfor>"
echo "<p>"
echo "</form>"
echo "</body>"
