function menu_goto( menuform )
{
    // see http://www.thesitewizard.com/archive/navigation.shtml
    // for an explanation of this script and how to use it on your
    // own site

    selecteditem = menuform.newurl.selectedIndex ;
    newurl = menuform.newurl.options[ selecteditem ].value ;
    menuform.newurl.selectedIndex=0
    // document.focus();
    if (newurl.length != 0) {
      newurl=newurl.toLowerCase();
      if (newurl.substring(0,5) == "http:") {
	 options="width=" + screen.width/2  + ", " +
	         "height="+ screen.height/2 + ", " +
	         "resizable=yes, toolbar=yes, scrollbars=yes, location=yes, status=yes, menubar=yes";
	 window.open(newurl,"my_new_window",options)
      } else {
      	location.href = newurl ;
      }
    }
}

function buildMenu () {
  document.write('<form action="dummyvalue">'+
          	'   <select name="newurl" title="Use this to view other pages"' +
          	'     onchange="menu_goto(this.form)" ' +
          	'     style="background-color: WhiteSmoke; font-family: arial; font-stretch: ultra-condensed;">                ' +
          	'     <option value="" selected="selected" >Menu </option>' +
          	'     <option value="index.php"                           >&nbsp;&raquo;&nbsp;RHC Home                  </option>' +
          	'     <option value="contacts.htm"                        >&nbsp;&raquo;&nbsp;Contacts                  </option>' +			
          	'     <option value="donation.htm"                        >&nbsp;&raquo;&nbsp;Donate money              </option>' +			
          	'     <option value="links.htm"                           >&nbsp;&raquo;&nbsp;Links                     </option>' +
          	'     <option value="hall_of_fame.htm"                    >&nbsp;&raquo;&nbsp;Hall of Fame              </option>' +
          	'     <option value="" disabled="disabled" >Bus Trips</option>' +
          	'     <option value="football.php"                        >&nbsp;&raquo;&nbsp;Football         </option>' +
           	'     <option value="map.htm"                             >&nbsp;&raquo;&nbsp;Map              </option>' +
           	'     <option value="faq.htm"                             >&nbsp;&raquo;&nbsp;Q&amp;A        </option>' +
           	'     <option value="found.htm"                           >&nbsp;&raquo;&nbsp;Lost&amp;Found        </option>' +
          	'   </select>                                                             ' +
          	'</form>');
    //      	'     <option value="login.php"                           >&nbsp;&raquo;&nbsp;Rep. login                </option>' +
    //      	'     <option value="Join_Hokie_Club.php"                 >&nbsp;&raquo;&nbsp;Join the Hokie Club       </option>' +
    //       	'     <option value="links.htm"                           >&nbsp;&raquo;&nbsp;Contact us                </option>' +
  }






