function menu_goto( menuform )
{

  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option selected>Site Map</option>' );
document.writeln( '<option value="BeetberryAbout.html">About</option>' );
document.writeln( '<option value="RaysBeePaper.htm">Bee Paper in HTML format</option>' );
document.writeln( '<option value="RaysBeePaper.pdf">Bee Paper in .pdf format</option>' );
document.writeln( '<option value="BeetberryBees.html">Bees</option>' );
document.writeln( '<option value="BeetberryEnergy.html">Energy</option>' );
document.writeln( '<option value="BeetberryHealth.html">Health</option>' );
document.writeln( '<option value="index.html">Home</option>' );
document.writeln( '<option value="RaysMasonryHeaterPaper.html">Masonry Heater Paper in HTML format</option>' );
document.writeln( '<option value="RaysMasonryHeaterPaper.pdf">Masonry Heater Paper in .pdf format</option>' );
document.writeln( '<option value="MoreBeePictures.html">More Bee Pictures</option>' );
document.writeln( '<option value="MoreFarmPictures.html">More Farm Pictures</option>');
document.writeln( '<option value="MoreHealthPictures.html">More Health Related Pictures</option>');
document.writeln( '<option value="MoreFarmPictures.html">Pictures of New Greenhouse</option>');
document.writeln( '<option value="BeetberryResources.html">Resources</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );


function showObject() 
{ 
  document.all['n1'].style.visibility = "visible"; 
} 
