function linkUp()
{
  var select = document.SiteMap.DDlinks.selectedIndex;
  location.href = document.SiteMap.DDlinks.options[select].value;
}

function siteMap()
{
document.write("<div id='sitemap' >")
document.write("<table border='0' width='800' height='5'>")
document.write("  <tr>")
document.write("    <td colspan='3' width='60%'>")
document.write("      <FORM NAME='SiteMap'>")
document.write("        <SELECT NAME='DDlinks' onChange='linkUp()'>")
document.write("        <OPTION SELECTED>Site Map")
document.write("        <OPTION VALUE='http://www.nla.org/test/index.asp'>&nbsp;Home</OPTION>")
document.write("        <OPTION VALUE='http://www.nla.org/test/about.asp'>&nbsp;About NLA</OPTION>")
document.write("        <OPTION VALUE='http://www.nla.org/test/mission.asp'>&nbsp;Mission</OPTION>")       
document.write("        </SELECT>")
document.write("      <br>")
document.write("      <span class='xsmall'>Click the drop down box to jump to a page.</span><br>")
document.write("      </FORM>")
document.write("    </td>")
document.write("    <td width='20%'>&nbsp;</td>")
document.write("    <td width='20%'>&nbsp;</td>")  
document.write("    <td width='20%'>&nbsp;</td>")
document.write("  </tr>")
document.write("</table>")
document.write("</div>")
}


