//* Written by Mercedes Clark-Smith: mclark-smith@nationalarchives.gov.uk  22/10/03 Function: NAjumpmenu
//* The pages have multiple forms so to make this script work you must:
//* 1. Give your form a unique name e.g. <form action="" method="post" name="lookingform">
//* 2. Your select must be called "jumpmenu" e.g. <select name="jumpmenu" size=1>
//* 3. Alter this line which sets the link for the image submit button to show the name of the form
//*    e.g. <a href="javascript:NAjumpmenu(document.forms.lookingform)"><img src="http://webarchive.nationalarchives.gov.uk/+/http://nationalarchives.gov.uk/images/gettingstarted/go-2.gif"  border="0"></a>
//*    It should read javascript:NAjumpmenu(document.forms.NAME OF YOUR FORM)
//* 4. The values for the options on your select should the link URLs e.g. <option value="adoption-step2.htm" selected>Adoption</option>

function NAjumpmenu(bform){
var URL = bform.jumpmenu.options[bform.jumpmenu.selectedIndex].value;
window.location.href = URL;
}




