#!/bin/perl
#
# Jerome C. Parks
# June 24, 1996
#
# This program add the footer to the NPC pages
#
print "Content-type: text/html\n\n";

print <<EOM;
<center>
<table border=2>
<tr>
<td align=center>
<font size=+1 color="#000000">
<B>To schedule a work trip to Juarez,<br>
call the Casas por Cristo office<br>
at (800) 819-8014.<p>
<a href="mailto:cpc\@dzn.com">Casas Por Cristo &lt;cpc\@dzn.com&gt;</a>
</B>
</font>
</td>
</tr>
</table>
</center>
EOM

exit;

