<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>clickNshow</title>
<style type="text/css">
<!--
div.footnote {
display: none;
}
-->
</style>
<script type="text/javascript">
<!--
function showhide(which)
{
var d = document.getElementById("d" + which)
if (d.showing) {
d.style.display = "none"
d.showing = false;
} else {
d.style.display = "block"
d.showing = true;
}
}
// -->
</script>
</head>
<body>
<ul>
<li><a href="javascript:showhide(1)">first item</a>
<div class="footnote" id="d1">
Here is stuff I want to say about the first item.
</div>
</li>
<li><a href="javascript:showhide(2)">second item</a>
<div class="footnote" id="d2">
Here is stuff I want to say about the first item.
</div>
</li>
</ul>
</body>
</html>