#!/bin/ksh
eval "`../proccgi $*`"

FORM_pageroot="`echo "$FORM_pageroot" | sed -e 's/[^0-9a-zA-Z._]//'`"

if ! [ "$FORM_pageroot" ]; then
    FORM_pageroot=index
fi

echo "Content-type: text/html"
echo "Location: http://mbays.freeshell.org/$FORM_pageroot.html"
echo
echo "<html>
    <head>
	<title>Redirecting away from Marge's stinking, rotten corpse</title>
   <meta http-equiv=\"refresh\" content=\"5; URL=http://mbays.freeshell.org/$FORM_pageroot.html\">
   </head>
    <body>
	You don't want to be here. You want to be <a href=\"http://mbays.freeshell.org/$FORM_pageroot.html\">here</a>.
    </body>
</html>"
