# MSM - if visitor arrived via an error document, say something switch($_GET["e"]) { case 401: # do nothing for now (use the 404 message) case 403: # do nothing for now (use the 404 message) case 404: $error_message = "
Woops! Sorry, we couldn't find ".$_SERVER["REQUEST_URI"]." . That page has either moved, or could not be found. If you think you've reached this page by mistake, please let us know
"; break; case 500: $err_msg = $_SERVER["REQUEST_URI"]." triggered a 500 Internal Server Configuration Error."; mail("webmaster@darwinday.org","500 Error from DarwinDay.org",$err_msg,"From: thecomputa@darwinday.org"); $error_message = "Sorry, there was a problem behind the scenes. IHS staff has been notified. Feel free to contact us with any concerns.
"; } ?>