// Bottom banner for WSM website - December 15, 2008

// 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
// in the PRE BODY javascript file and finished below.

function insert_post_body_matter()
{
  <!-- start of bottom bannner -->
  document.write("<TABLE BORDER=\"0\" CELLPADDING=\"0\" CELLSPACING=\"0\" WIDTH=\"100%\">\n");
  document.write("<TR><TD HEIGHT=\"2\" BGCOLOR=PURPLE></TD></TR>\n");
  document.write("<TR><TD HEIGHT=\"2\" BGCOLOR=GRAY></TD></TR>\n");
  document.write("<TR><TD>\n");
  document.write("  <TABLE BORDER=\"0\" CELLPADDING=\"0\" CELLSPACING=\"0\" WIDTH=\"100%\" BGCOLOR=\"#F8F8F8\"><TR><TD>\n");
  document.write("    <P STYLE=\"margin: 0in\">\n");
  if (ws_page_name == "main_page")
    document.write("    <FONT COLOR=BLACK>Wave Structure of Matter (WSM)</FONT>\n");
  else
    document.write("    <A HREF=\"" + ws_dirs + "index.htm\"><FONT COLOR=BLACK>Wave Structure of Matter (WSM)</FONT></A>\n");
  document.write("    </P>\n");
  document.write("  </TD><TD>\n");
  document.write("    <FONT SIZE=\"2\" COLOR=BLACK>\n");
  document.write("    <P ALIGN=RIGHT STYLE=\"margin: 0in\">\n");
  document.write("    For comments: <IMG SRC=\"" + ws_dirs + "images/webmasterwsminfoemail.jpg\" ALIGN=TOP alt=\"\">\n");
  document.write("    </P>\n");
  document.write("    </FONT>\n");
  document.write("  </TD></TR> </TABLE>\n");
  document.write("</TD></TR>  </TABLE>\n");
  <!-- end of bottom bannner -->

  document.write("</TD><TD WIDTH=\"2\" BGCOLOR=\"#F8F8F8\">\n");
  document.write("</TD></TR>  </TABLE>\n");
  <!-- end of webpage table -->
}

insert_post_body_matter();