Well, lets paste it and see how it 'prints'.
It came from here
www.cgi.tj/scripts/aliendomain.html
#!/usr/bin/perl
# AlienDomain v1.0. Copyright 1998 Jon Hedley. All Rights Reserved.
# Full Docs: http://www.cgi.tj Email: jon@hedley.net
# Do not distribute without express written permission of Jon Hedley.
# Usage is free as long as you link to me: see http://www.cgi.tj/links/
# for the exact details.
# The whois database looks like this (one line per TLD):
# "<tld>|<server>|<available string>|<yes html>|<no html>"
# In the yes & no html (that is returned to the browser depending
# on the availability of the domain), the following strings are
# interpolated:
# [fqdn] - The full domain name searched for (eg cgi.tj)
# [domain] - The domain name searched for (eg cgi)
# [tld] - The top level domain searched (eg tj)
###################################################
# INSTALLATION NOTES #
# #
# 1) Set first line to path of the Perl 5 #
# Interpreter. #
# 2) Set $logpath to the world writable text #
# file to log to. Comment it out to disable #
# logging. #
# 3) Set $database to the world readable text #
# file to use as the whois database. #
# 4) Set $whois_cmd to your server's whois app. #
# It must use the syntax "user@whois.server". #
# 5) Set $timeout to the maximum time to wait #
# for the whois server to return (seconds). #
# 6) Set @referers to the servers that can host #
# forms that call this script. Or comment it #
# out to disable this check. #
# 7) Set $header to the HTML top. Use of tables #
# will mean that the browser will not display #
# until every domain has been searched. #
# 8) Set $footer to the HTML footer. #
###################################################
$logpath = '/full/path/to/log.txt';
$database = '/full/path/to/db/txt';
$whois_cmd = '/usr/bin/fwhois';
$timeout = 10;
@referers = ('cgi.tj', 'www.cgi.tj','209.77.224.11');
$header = qq|
<html><head><title><!-- title --></title></head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<h2 align="center"><!-- title --></h2>
|;
$footer = qq|
<h3 align="center"><a href="http://www.cgi.tj/">AlienDomain</a></h2>
<p align="center">Copyright 1997 - 1998 Jon Hedley.
All Rights Reserved.
</body>
</html>
|;
##############################################################
## STOP! That's all you need to edit! Don't break anything! ##
##############################################################
<<<SNIP>>>
Mike
You might want to delete this post...a little on the long side. Sorry
[This message has been edited by flowersource (edited 02-27-99).]
[This message has been edited by Deb (edited 02-28-99).]