function show_it(whichMenu)
	 {
          if (document.getElementById)
	    document.getElementById(whichMenu).style.visibility = "visible";
          else
	    document[whichMenu].visibility = "visible";
         }//ends open function


function hide_it(whichMenu)
	 {
          if (document.getElementById)
	    document.getElementById(whichMenu).style.visibility = "hidden";
          else
	    document[whichMenu].visibility = "hidden";
         }//ends close function


function SceneryMenu()
{
document.write("<div id='scenelist'>")
document.write("<p class=note>")
document.write("<b>")
document.write("Utah Scenery")
document.write("</b>")
document.write('<br> &nbsp; <a href="cecret.htm">Cecret Lake</a>')
document.write('<br> &nbsp; <a href="devilc.htm">Devils Castle</a>')
document.write('<br> &nbsp; <a href="albionx.htm">Albion Basin</a>')
document.write('<br> &nbsp; <a href="mtbaldy.htm">Mt. Baldy</a>')
document.write('<br> &nbsp; <a href="hartlake.htm">Hart Lake</a>')
document.write('<br> &nbsp; <a href="fallcolr.htm">Fall Colors</a>')
document.write('<br> &nbsp; <a href="piuta.htm">Piuta Reservoir</a>')
document.write('<br> &nbsp; <a href="farmbay.htm">Farmington Bay</a>')
document.write('<br> &nbsp; <a href="parleys.htm">Parleys Creek</a>')
document.write('<br> &nbsp; <a href="wasatch.htm">Wasatch Mountains</a>')
document.write('<br> &nbsp; <a href="nebo.htm">Mt. Nebo</a>')
document.write('<br> &nbsp; <a href="timp.htm">Mt. Timpanogos</a>')
document.write('<br> &nbsp; <a href="benlomnd.htm">Mt. Ben Lomond</a>')
document.write('<br> &nbsp; <a href="mtogden.htm">Mt. Ogden</a>')
document.write('<br> &nbsp; <a href="deseret.htm">Deseret Peak</a>')
document.write('<br> &nbsp; <a href="buttrfld.htm">Butterfield Peak</a>')
document.write('<br> &nbsp; <a href="coppmine.htm">Kennecott Mine Overlook</a>')
document.write('<br> &nbsp; <a href="capreefx.htm">Capitol Reef Overlook</a>')
document.write('<br> &nbsp; <a href="mompop.htm">Mom, Pop & Henry</a>')
document.write('<br> &nbsp; <a href="twocolr.htm">Two-Color Peak</a>')
document.write('<br> &nbsp; <a href="fishlake.htm">Fish Lake</a>')
document.write('<br> &nbsp; <a href="thoulake.htm">Thousand Lake Mountain</a>')
document.write('<br> &nbsp; <a href="boulderm.htm">Boulder Mountain</a>')
document.write('<br> &nbsp; <a href="sunset.htm">Sunset</a>')
document.write("</p>")
document.write("</div>")
}