FrontPage Help
Split or merge frontpage tables
FrontPage behaviors and layers
Below is an example - try it!
Drop down box's are great for navigation and FrontPage comes with one already built in.
First insert a dropdown box. Insert/form/drop down box and then follow on as below. (Frontpage wil almost certainly add a submit and reset button! Just delete them)
Alternatively in FP2003 you can just place the cursor where you want it and then select jump menu from the behaviors tab. FrontPage will insert the drop down box for you.
This is the code for FP2003 - Below is the way for frontpage
2000, 2002 and most likely 98.
1. Select the drop-down box.
2. Choose Behaviours from the Format menu.
3. Click the Insert button in the Behaviours task pane, then choose
Jump Menu.
4. Use the resulting Jump Menu dialog box to configure the drop-down
Menu names (Choice) and Value (the location of the page) you want.
For example a link reading About Us would most likely link to a file
called aboutus.htm) See graphic below.

1.Right-click the drop-down box and choose Form Field Properties
from the shortcut menu.
2. When the Drop-Down Box Properties dialog box appears, click the
Add button.
3. When the Add Choice dialog box appears: In the Choice box, enter
the title text you want the visitors to see.
Select the Specify Value check box, then enter the URL in the
accompanying text box.
Set Initial State to Not Selected.
Click OK.
4. Repeat steps 2 and 3 for each hyperlink choice.
5. Click OK to close the Drop-Down Box Properties dialog box .
6. With the drop-down box still selected, switch to HTML view. The
HTML for the drop-down box should look like
this:
<select size="1" name="D1">
<option value="http://www.wet-inc.co.uk">Google</option>
<option value="http://www.yahoo.com">Yahoo</option>
</select>
7. Add an onchange= attribute to the <select> tag as shown below:
<select size="1" name="D1" onchange="window.location.href=this.value;">