// this file provides general scripts that are used by most pages in the site
//
// copyright (c) 2007 BeneStar Incorporated
//

//------------------------------------------------------------------------------
// general functions
//------------------------------------------------------------------------------


function addHeader(root)
{
  document.write("    <table border=\"0\" cellpadding=\"5\" cellspacing=\"0\" align=\"center\">");
  document.write("      <tr>");
  document.write("	      <td><img border=\"0\" src=\"" + root + "header2.jpg\" alt=\"Cecilia Schiller Adventures in WOODCARVING\"></td>");
  document.write("      </tr>");
  document.write("    </table>");
}

function addMenu(root, page)
{
  document.write("    <table class=\"nav_table\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\" align=\"center\">");
  document.write("      <tr>");
  if (page == "home") {
    document.write("        <td><tt>Home</tt></td>");
  } else {
    document.write("        <td><a href=\"" + root + "index.html\"><tt>Home</tt></a></td>");
  }
  document.write("        <td>&nbsp;</td>");
  document.write("      </tr>");
  document.write("      <tr>");
  if (page == "galleries") {
    document.write("        <td><tt>Galleries</tt></td>");
  } else {
    document.write("        <td><a href=\"" + root + "Galleries/index.html\"><tt>Galleries</tt></a></td>");
  }
  document.write("        <td>&nbsp;</td>");
  document.write("      </tr>");
  document.write("      <tr>");
  if (page == "movies") {
    document.write("        <td><tt>Movies</tt></td>");
  } else {
    document.write("        <td><a href=\"" + root + "Movies/index.html\"><tt>Movies</tt></a></td>");
  }
  document.write("        <td>&nbsp;</td>");
  document.write("      </tr>");
  document.write("      <tr>");
  if (page == "events") {
    document.write("        <td><tt>Events</tt></td>");
  } else {
    document.write("        <td><a href=\"" + root + "Events/index.html\"><tt>Events</tt></a></td>");
  }
  document.write("        <td>&nbsp;</td>");
  document.write("      </tr>");
  document.write("      <tr>");
  if (page == "links") {
    document.write("        <td><tt>Links</tt></td>");
  } else {
    document.write("        <td><a href=\"" + root + "Links/index.html\"><tt>Links</tt></a></td>");
  }
  document.write("        <td>&nbsp;</td>");
  document.write("      </tr>");
  document.write("      <tr><td></td></tr>");
  document.write("      <tr><td></td></tr>");
  document.write("      <tr><td></td></tr>");
  document.write("      <tr><td></td></tr>");
  document.write("    </table>");
}

function addFooter()
{
  document.write("	 <br>");
  document.write("	  <div align=\"center\" class=\"content_footer\">");
  document.write("Schiller Woodcarving, Cecilia Schiller.&nbsp;&nbsp;|&nbsp&nbsp;");
  document.write("E-mail: <a href=mailto:cecilia@bitstream.net>cecilia@bitstream.net</a>");
  document.write("	  </div>");
}

