// main template for mcyp
// 08/02/2008 - bh
//
// Purpose: show the standard top section of the page
// arg="p2" if not home page, "" if home page
function showTop(arg){
document.write("  <!-- page layout table -->");
document.write("  <table class='pagebody' border='0' width='760' align='center' cellpadding='0' cellspacing='0'>");
document.write("    <tr class='pagetop'>");
document.write("      <td colspan='3' align='center'>");
document.write("        <img class='logo' src='images/mcyp_logo2.gif' alt='MCYP logo' title='MCYP logo' />");
document.write("        <h1 class='toptitle'>Mendocino County Youth Project</h1>");
document.write("        <h2 class='toptitle'>Mendocino Family and Youth Services</h2>");
document.write("        <h3 class='toptitle'>Serving Mendocino County Youth since 1974</h3>");
document.write("	<center class='topinfo'>");
document.write("	  <div class='centerbox'>24-hour crisis line call 1.800.575.HELP (4357)</div>");
document.write("	</center>");
document.write("	</td></tr>");
document.write("	<!-- menu row -->");
document.write("      <tr style='background-color:#75B37E;'>");
document.write("	<td align='center' colspan='3'>");
document.write("<ul class='bevelmenu'>");
document.write("<li><a href='index.html'>HOME</a>|</li>");
document.write("<li><a href='locations.html'>LOCATIONS</a>|</li>");
document.write("<li><a href='aboutus.html'>ABOUT US</a>|</li>");
document.write("<li><a href='donate.html'>DONATE</a>|</li>");
document.write("<li><a href='contactus.html'>CONTACT US</a></li>");
document.write("</ul>");
document.write("	</td>");
document.write("	</tr>");
document.write("    <tr>");
document.write("	<td class='menuback"+arg+"' rowspan='2'>");
document.write("	<!-- LEFT VERTICAL MENU CELL -->");
document.write("<div class='menu'>");
document.write("  <ul>");
document.write("    <li class='sub'><a href='therapy.html'>Services &#187;");
document.write("	  <!--[if IE 7]><!--></a><!--<![endif]-->");
document.write("	  <!--[if lte IE 6]><table><tr><td><![endif]-->");
document.write("	  <ul>");
document.write("	    <li><a href='therapy.html'>Therapy &amp; Substance Abuse</a></li>");
document.write("	    <li><a href='crisisintervention.html'>Crisis Intervention</a></li>");
document.write("	    <li><a href='schoolbased.html'>School Based</a></li>");
document.write("	    <li><a href='transitionalliving.html'>Transitional Living</a></li>");
document.write("	  </ul>");
document.write("	  <!--[if lte IE 6]></td></tr></table></a><![endif]-->");
document.write("    </li>");
document.write("    <li><a href='employment.html'>Employment</a></li>");
document.write("    <li><a href='administration.html'>Administration</a></li>");
document.write("    <li><a href='news.html'>News</a></li>");
document.write("    <li><a href='mfys.html'>MFYS</a></li>");
document.write("    <li><a href='contactus.html'>Contact Info</a></li>");
document.write("  </ul>");
document.write("</div>");
document.write("    </td>");
}

// Purpose: show the standard bottom section of the page
// arg="p2" if not home page, "" if home page
function showBottom(arg){
document.write("	</td>");
document.write("	<td>&nbsp;</td>");
document.write("	</tr>");
document.write("	<!-- footer row -->");
document.write("	<tr>");
document.write("	<td class='menuback'>");
document.write("	  &nbsp;");
document.write("	</td>");
document.write("	<td class='copyright"+arg+"' colspan='2'>");
document.write("	  <div class='copyright"+arg+"'>");
document.write("		  <hr class='copyright' />");
document.write("	    Copyright 2010 - MCYP");
document.write("	  </div>");
document.write("	</td>");
document.write("	</tr>");
document.write("	<tr class='pagebot'>");
document.write("	  <td colspan='3'>&nbsp;</td>");
document.write("	</tr>");
document.write("  </table>");
}
