#!/usr/local/bin/perl use CGI "all"; $nl = "\n"; $q = new CGI; print $q->header, $nl; print $q->start_html(-title=>'LAPCOD Meeting Registration', -bgcolor=> '#FFFFFF'), $nl; ## Trailer print "", $q->p; $nl; ## Header print "", $q->p; $nl; ## Header 2 print "", $q->p; $nl; print $q->blockquote( $q->center( $q->font({-size=>'+2', -face=>'helvetica,arial,sans'}, $q->b("Meeting Registration Form") ) ) ), $nl; #print "
", $q->p; #print "
", $q->p; #print "", $q->p; #print "Meeting Registration Form", $q->p; #print "", $q->p; #print "
", $q->p; #print "
", $q->p; $nl; print "
\n", $q->p; $nl; ## pre #print "Sorry but the Registration for the December 2002 LAPCOD Meeting \ #in Key Largo, Florida is not yet open. \ #Please check back later.\n", $q->p; $nl; ## post print "Sorry but the Registration for the December \ 2002 LAPCOD Meeting in Key Largo, Florida is \ closed.\n", $q->p; $nl; print "
\n", $q->p; $nl; ## Trailer print "", $q->p; $nl; print $q->end_html, $nl; exit 0;