Create a drop-down list box (select element) in a form. Set the value of
each item to a URL. Add an "onchange" event handler to the drop-down that
sets the document.location property to the URL of the selected option.
Example:
<form><select onchange="document.location =
this.options[this.selectedIndex].value"size="1" name="D1">
<option selected>Select One</option>
<option value="
http://www.google.com">Google</option>
<option value="
http://www.microsoft.com">Microsoft</option>
</select></form>
--
HTH,
Kevin Spencer
Microsoft MVP
Professional Numbskull
Show me your certification without works,
and I'll show my certification
*by* my works.
	
		
			
				Phil Brighton said:
			
		
	
	
		
		
			Please can someone explain how to produce  drop down navigation buttons in
frontpage 2003  ? Can this be done and how ? I have a programme called
front
FX which has loads of buttons, but no drop down nav buttons.
Many Thanks