    function printHeader() {
      document.writeln("    <table id=\"navigation\">");
      document.writeln("      <tr id=\"nav_top\">");
      document.writeln("        <td colspan=\"5\" id=\"title\">bedard.<span class=\"pink\">creek</span>.acres</td>");
      document.writeln("        <td class=\"link\"><a href=\"contact.html\">contact</a></td>");
      document.writeln("      </tr>");
      document.writeln("      <tr>");
      document.writeln("        <td style=\"width:100%\"></td>");
      document.writeln("        <td class=\"link\"><a href=\"index.html\">home</a></td>");
      document.writeln("        <td class=\"link\"><a href=\"about.html\">about</a></td>");
      document.writeln("        <td class=\"link\"><a href=\"products.html\">products</a></td>");
      document.writeln("        <td class=\"link\"><a href=\"recipes.html\">recipes</a></td>");
      document.writeln("        <td class=\"link\"></td>");
      document.writeln("      </tr>");
      document.writeln("    </table>");
    }

    function printFooter() {
      document.writeln("  <div id=\"footer\">");
      document.writeln("    <table>");
      document.writeln("      <tr>");
      document.writeln("        <td><a href=\"http://templatesbox.com\">Free Website Templates</a></td>");
      document.writeln("        <td>Copyright&copy; Bedard Creek Acres</td>");
      document.writeln("      </tr>");
      document.writeln("    </table>");
      document.writeln("  </div>");
    }