function printMenu(page) {
  document.write('<ul>');

//  document.write('<li><a href="index.html">Home</a></li>');

  if (page == 'about') {
    document.write('<li><b>About Us</b></li>');
  }
  else {
    document.write('<li><a href="aboutus.htm">About Us</a></li>');
  }

  if (page == 'constitution') {
    document.write('<li><b>Constitution</b></li>');
  }
  else {
    document.write('<li><a href="constitution.html">Constitution</a></li>');
  }

  document.write('<li><a href="http://socialism.meetup.com/83/calendar/">Calendar</a></li>');

  if (page == 'fund') {
    document.write('<li><b>Fundraising</b></li>');
  }
  else {
    document.write('<li><a href="fund.htm">Fundraising</a></li>');
  }

  if (page == 'merch') {
    document.write('<li><b>Merchandise</b></li>');
  }
  else {
    document.write('<li><a href="merch.htm">Merchandise</a></li>');
  }

  if (page == 'email') {
    document.write('<li><b>News and info</b></li>');
  }
  else {
    document.write('<li><a href="email.htm">News and info</a></li>');
  }

  if (page == 'volunteer') {
    document.write('<li><b>Volunteer</b></li>');
  }
  else {
    document.write('<li><a href="volunteer.htm">Volunteer</a></li>');
  }

  document.write('<li><a href="http://spboston.org/index.php/Statements">Statements</a></li>');

  if (page == 'contact') {
    document.write('<li><b>Contact</b></li></ul>');
  }
  else {
    document.write('<li><a href="contact.htm">Contact</a></li></ul>');
  }

  document.write('<p>&nbsp;</p>');
  document.write('<p>Socialist Party of MA<br>PO Box 15342<br>Boston, MA 02215<br>617-275-2525<br><a href="mailto:spmass@gmail.com">spmass@gmail.com</a>');
  document.write('<p><a href="http://www.spboston.org">Boston Area Local</a><br>PO Box 15342<br>Boston, MA 02215<br>617-275-2525<br><a href="http://www.spboston.org">www.spboston.org</a><br><a href="mailto:spboston@spboston.org">spboston@spboston.org</a>');
//  document.write('<p>Tom Mooney Local<br />(Western Massachusetts)<br>43 Taylor Hill Rd. <br>Montague, MA 01351<br><a href="mailto:susandor@crocker.com">susandor@crocker.com</a></p>');

  return false;
}
