#!/usr/bin/env perl

my $url = 'http://bibbase.org/show?'.$ENV{'QUERY_STRING'};

print "Content-type: text/html\n\n";

use LWP::Simple;
getprint $url;

