#!/usr/local/bin/perl -Tw # Mail script for pnas 1998 paper, derived from scop # Copyright (C) 1994-8 Steven E. Brenner use strict; require "./cgi-lib.pl"; $ENV{'PATH'} = ""; my ($Date, $End); $Date = "\$Date"; $End = "\$"; MAIN: { my (%input); if (&ReadParse(\%input)) { &SendMail(%input); &PrintMailSent; } else { &PrintMailForm; } } sub SendMail { my (%input) = @_; my ($pdf); if (defined $input{'pdf'}) { $pdf = "Send PDF file"; } else { $pdf = "Send Hardcopy"; } open (MAIL, "|/usr/lib/sendmail brenner\@hyper.stanford.edu") || die "Couldn't open sendmail: $!\n"; print MAIL <Request submitted

Request submitted

Thank you very much for your interest in our work. Your request has been sent to the authors. END } sub PrintMailForm { print &PrintHeader; print <Reprint Request Form

Request reprint

Please fill in this form to request a reprint of:

Brenner SE, Chothia C, Hubbard TJP. 1998. Assessing sequence comparison methods with reliable structurally identified distant evolutionary relationships. Proc. Natl. Acad. Sci. USA 95:6073-6078.

Note that you can obtain a complete version of the paper in HTML or PDF format (which produces reprint-quality printouts), from http://www.pnas.org/cgi/content/abstract/95/11/6073.

If you do not have a subscription to the PNAS web site, you may request an electronic reprint (a PDF file) rather than paper, by indicating below.

Email Address
Name

Postal Address:


Comments / Questions:

Please send PDF file rather than paper reprint

END }