def start():
    httpheader = "Content-type: text/html\n\n"
    header = \
"""<HTML>
<HEAD><TITLE>PDQBoard</TITLE>
<LINK REL=stylesheet HREF="pdqboard.css" TYPE="text/css">
</HEAD>

<BODY>

<DIV CLASS="sidebar">
   <DIV CLASS="sidebarlinks">
      <A HREF="pdqboard.py">[ FKHS '93 Message Board ]</A><BR>
      <A HREF="post.html">[ Post A New Message ]</A><BR>
      <A HREF="info.py">[ Biographies ]</A><BR>
      <A HREF="info.html">[ Where Are You Now? ]</A><BR>
      <A HREF="fkhspics/fkhspics.html">[ Photos ]</A><BR>
      <A HREF="reunioninfo.html">[ Reunion Information ]</A><BR>
      <A HREF="wanted.html">[ 93's Most Wanted ]</A><BR>
      <A HREF="/consulting" STYLE="font-size: .5em">[ Visit Our Sponsor ]</A>
   </DIV>
</DIV>

<DIV CLASS="graphic" ALIGN="CENTER">
   <IMG SRC="fkhs.jpg" WIDTH=80%>
</DIV>

"""
    return httpheader + header

def msgheader():
    return \
"""<P CLASS="graphic">
Hello Class of '93!  Please feel free to use this site to post information about yourself and visit back frequently for updates about our upcoming reunion in July. We are trying to find people so PLEASE forward this website address to people from '93.
</P>

<P CLASS="graphic">
If you have any pictures from our High School days that you would like to have posted, please email them to <a href="mailto:kathy93@maxint.net">Kathy Caulkins </a href="mailto:kathy93@maxint.net"> at <a href="mailto:kathy93@maxint.net">kathy93@maxint.net</a href="mailto:kathy93@maxint.net">.
</P>

<P CLASS="graphic">
If you have specific questions about the reunion please contact <a href="mailto:dvacca@worldnet.att.net">David Vacca</a href="mailto:dvacca@worldnet.att.net"> at <a href="mailto:dvacca@worldnet.att.net">dvacca@worldnet.att.net</a href="mailto:dvacca@worldnet.att.net">.
</P>

<P CLASS="graphic">
If you have questions or problems regarding this website please contact <a href="mailto:kathy93@maxint.net">Kathy Caulkins </a href="mailto:kathy93@maxint.net"> at <a href="mailto:kathy93@maxint.net">kathy93@maxint.net</a href="mailto:kathy93@maxint.net">.
</P>
"""

def finish(status = 1):
    footer = \
"""</BODY>
</HTML>"""
    return footer
