
function p (text) {
document.write (text);
}

// function showTopics () {
p ("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"155\">");

var topicTexts = ["New Patients", "Services","Educational Programs","Pharmacy",
    "Books & Tapes","Newsletter","About Naturopathy","About Dr. Taylor",
    "Wellness Topics","Articles","Contact Us","Home"];

var topicPages = ["newPatients.html", "services.htm","programs.htm","pharmacy.htm","books.htm",
    "newsletter.htm","about_naturopathy.htm","about_barry_taylor.htm",
    "topics.htm","articles.htm","contact.htm","index.htm"];

var nEntries = topicTexts.length;

for (var i=0; i<nEntries; i++) {
p ("  <tr>");
p ("    <td>");
p ("      <p align=\"center\"><a class=topics href=\"" +
        topicPages[i] +"\">");
p (topicTexts[i]);
p ("</a></td>");
if (i+1 < nEntries) {
p ("  </tr>");
p ("  <tr>");
p ("    <td>");
p ("      <p align=\"center\"><img border=\"0\" src=\"images/ball1.gif\"");
p ("align=\"center\" vspace=\"2\" width=\"11\" height=\"10\"></td>");
p ("  </tr>");
}
}
p ("</table>");
// }
