var curPage = ""
function listTOC(curPage, root) {
  document.write("<table cellpadding='2' border='1' frame='void' rules='rows' bordercolor='gainsboro'>")
  listLink(curPage, "index.html", "Home Page", root)
  listLink(curPage, "welcome.html", "President's Message<br><span style='font-weight:bold;color:ff0000;font-size:80%;'>updated</span>", root)
  listLink(curPage, "support.html", "Support Groups", root)
  listLink(curPage, "internet.html", "Internet Support", root)
  listLink(curPage, "socialworker.html", "Support Services", root)
  listLink(curPage, "http://www.hdsa.org", "National Web Site", "_blank")
	document.write("<tr><td>&nbsp;</td></tr>")
  listLink(curPage, "research/research.html", "Research and Clinical Trials", root)
  listLink(curPage, "articles/centerofexcellence.html", "Texas Center of Excellence", root)
  listLink(curPage, "http://get-me.to/nya", "National Youth Alliance", root)
  listLink(curPage, "advocate.html", "HDSA Advocacy Program", root)
	document.write("</table>");
}



function listLink(curPage, thisPage, linkTitle, root) {
if (curPage == thisPage) {
  document.write("<tr><td bgcolor='gainsboro'><a href='")
	document.write(root+thisPage)
	document.write("'><font color='cadetblue'>&nbsp;")
	document.write(linkTitle)
	document.write("&nbsp;</font></a></td></tr>")
} else {
  document.write("<tr><td><a href='")
	if (root == "_blank") {
		document.write(thisPage)
		document.write ("' target='_blank'>")
	} else {
		document.write(root+thisPage)
		document.write("'>")
	}
	document.write(linkTitle)
	document.write("</a></td></tr>")
}
}
