Yes and no. it needs to be a drop down select box and use some javascript.
Here's an example:
<form>
<p align="center"><b>Select a Site </b>
<select id="setit" style="color: #0000FF" size="1" name="test">
<option value="">Select one</option>
<option value="
http://www.altavista.com">AltaVista</option>
<option value="
http://www.yahoo.com">Yahoo</option>
<option value="
http://www.google.com">Google</option></select>
<input type="button" value="Go"
onclick="window.open(setit.options[setit.selectedIndex].value)">
</p></form>
add options as needed and edit the values and text displayed to suit your
needs.
--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
.......................with a computer
Sam And said:
I'd like to create a form with a drop down list of links that would point
the user to specific pages on my web. Can the Drop down box under
Insert -
Forms be used for this?