// Top banner for WSM website

// NOTE: In order for all webpages to be exactly 800 pixels wide, the body
// of each webpage is completely enclosed in a table. The table code is started
// below and finished in the POST BODY javascript file.

function insert_pre_body_matter()
{
  // start of webpage table
  document.write("<TABLE BORDER=\"0\" CELLPADDING=\"0\" CELLSPACING=\"0\" WIDTH=\"800\" BGCOLOR=WHITE ALIGN=CENTER>\n");
  document.write("<TR><TD WIDTH=\"2\" BGCOLOR=\"#F8F8F8\">\n");
  document.write("</TD><TD>\n");

  // start of top banner table
  document.write("<TABLE BORDER=\"0\" CELLPADDING=\"0\" CELLSPACING=\"0\" WIDTH=\"100%\" BGCOLOR=WHITE><TR><TD>\n");
  document.write("  <TABLE BORDER=\"0\" CELLPADDING=\"0\" CELLSPACING=\"0\" WIDTH=\"100%\"><TR><TD>\n");
  document.write("    <IMG SRC=\"" + ws_dirs + "images/banner_spherical_res_2d_left.jpg\" alt=\"\">\n");
  document.write("  <\TD><TD BGCOLOR=\"#FCFCFC\" WIDTH=\"100%\">\n");
  if (ws_page_name == "main_page") {
    document.write("    &nbsp;&nbsp;&nbsp;<FONT SIZE=\"2\" COLOR=BLACK><B><I>Wave Structure of Matter (WSM)</I></B></FONT>\n");
  } else {
    document.write("    &nbsp;&nbsp;&nbsp;" +
      "<A HREF=\"" + ws_dirs + "index.htm\"><FONT SIZE=2 COLOR=BLACK><B><I>Wave Structure of Matter (WSM)</I></B></FONT></A>");
    if (ws_page_name == "article")
      document.write("<FONT SIZE=\"2\" COLOR=BLACK><B><I> - <A HREF=\"" + ws_dirs + "articles.htm\"><FONT SIZE=\"2\" COLOR=BLACK><B><I>" + ws_disp_title + "</I></B></FONT></A></I></B></FONT>\n");
    else if (ws_page_name == "guide_page")
      document.write("<FONT SIZE=\"2\" COLOR=BLACK><B><I> - <A HREF=\"" + ws_dirs + "lguide_wave_structure_matter.htm\"><FONT SIZE=\"2\" COLOR=BLACK><B><I>" + ws_disp_title + "</I></B></FONT></A></I></B></FONT>\n");
    else
      document.write("<FONT SIZE=\"2\" COLOR=BLACK><B><I> - " + ws_disp_title + "</I></B></FONT>\n");
  }
  document.write("  </TD><TD ALIGN=RIGHT>\n");
  document.write("    <IMG SRC=\"" + ws_dirs + "images/banner_spherical_res_2d_right.jpg\" ALT=\"\">\n");
  document.write("  </TD></TR></TABLE>\n");
  document.write("</TD></TR><TR><TD HEIGHT=\"2\" BGCOLOR=GRAY>\n");
  document.write("</TD></TR><TR><TD BGCOLOR=\"#DDD0DD\">\n");
  document.write("  <TABLE BORDER=\"0\">  <TR><TD>\n");
  if (ws_page_name == "main_page")
    document.write("    &nbsp;<FONT COLOR=BLACK><B>Home</B></FONT>\n");
  else
    document.write("    &nbsp;<A HREF=\"" + ws_dirs + "index.htm\"><FONT COLOR=BLACK><B>Home</B></FONT></A>\n");
  document.write("  </TD><TD>\n");
  //if (ws_page_name == "guide")
  //  document.write("    &nbsp;<FONT COLOR=BLACK><B>Guide to WSM</B></FONT>\n");
  //else
  //  document.write("    &nbsp;<A HREF=\"" + ws_dirs + "lguide_wave_structure_matter.htm\"><FONT COLOR=BLACK><B>Guide</B></FONT></A>\n");
  //document.write("  </TD><TD>\n");
  if (ws_page_name == "articles_page")
    document.write("    &nbsp;<FONT COLOR=BLACK><B>Articles</B></FONT>\n");
  else
    document.write("    &nbsp;<A HREF=\"" + ws_dirs + "articles.htm\"><FONT COLOR=BLACK><B>Articles</B></FONT></A>\n");
  document.write("  </TD><TD>\n");
  if (ws_page_name == "faq_page")
    document.write("    &nbsp;<FONT COLOR=BLACK><B>FAQ</B></FONT>\n");
  else
    document.write("    &nbsp;<A HREF=\"" + ws_dirs + "faq.htm\"><FONT COLOR=BLACK><B>FAQ</B></FONT></A>\n");
  document.write("  </TD><TD>\n");
  if (ws_page_name == "links_page")
    document.write("    &nbsp;<FONT COLOR=BLACK><B>Links</B></FONT>\n");
  else
    document.write("    &nbsp;<A HREF=\"" + ws_dirs + "links.htm\"><FONT COLOR=BLACK><B>Links</B></FONT></A>\n");
  document.write("  </TD></TR></TABLE>\n");
  document.write("</TD></TR></TABLE>\n");
  <!-- end of top banner table -->
}

insert_pre_body_matter();