#!/usr/bin/perl
# 5/31/96
# View.cgi
# By John Wiggins
#
# This simple CGI script was created to help reduce
# the amount of seperate HTML files. This is to be
# called by an image map (client side) by specifying
# this script, a question mark, and a letter ranging
# from A to I.
# eg.
#
#
print "Content-type: text/html\n\n";
if ($ARGV[0] eq "A") { $name = "Ruth Bader Ginsburg"; $html = "ginsburg"; }
if ($ARGV[0] eq "B") { $name = "David Hackett Souter"; $html = "souter"; }
if ($ARGV[0] eq "C") { $name = "Clarence Thomas"; $html = "thomas"; }
if ($ARGV[0] eq "D") { $name = "Stephen Breyer"; $html = "breyer"; }
if ($ARGV[0] eq "E") { $name = "Antonin Scalia"; $html = "scalia"; }
if ($ARGV[0] eq "F") { $name = "John Paul Stevens"; $html = "stevens"; }
if ($ARGV[0] eq "G") { $name = "William Hubbs Rehnquist"; $html = "rehnquist"; }
if ($ARGV[0] eq "H") { $name = "Sandra Day O'Connor"; $html = "oconnor"; }
if ($ARGV[0] eq "I") { $name = "Anthony M. Kennedy"; $html = "kennedy"; }
print <
Justice $name

$name
Brief biography of Justice $name.
Source: Cornell Law School's Justices of the Supreme Court homepage
[http://www.law.cornell.edu/supct/justices/fullcourt.html]