home *** CD-ROM | disk | FTP | other *** search
- #!/usr/local/bin/perl
- $local_root = $ENV{'DOCUMENT_ROOT'} ;
- $cgi_name = '/cgi-bin' ;
- push(@INC, $local_root . $cgi_name );
-
-
- $file = $ENV{'QUERY_STRING'};
-
- print "Content-type: text/html\n\n" ;
-
- print <<EoI;
-
-
- <HTML><HEAD><TITLE>
- The Fair Brochure
- </TITLE>
- </HEAD>
- <frameset rows="70,*">
- <frame src="bulbs_spanish.cgi?$file" name="menu">
- <frame src="$file" name="home">
- </frameset>
- </body>
- </HTML>
-
- EoI
- exit (0) ;
-