<?
/* spambot exclusion system */
if (preg_match("/Indy Library/" ,$HTTP_USER_AGENT)){
    print (
"<html><body><center><h2>Client Software Unwelcome</h2></center>");
    print (
"Due to abuse, any user agent containing the phrase <b>Indy Library</b> is blocked from this site");
    print (
"</body></html>");
    exit;
    }
else
    print (
"<!-- Anti-Spambot check passed -->");
?>