Create a Drop Down Redirection Menu

example:  

Steps:

Copy the code at the bottom of this page and paste it into Notepad.

Make corrections for the choices you want according to the instructions below.

Then copy the code from Notepad

Open the webpage you want to add the menu to.

Click the HTML tab and position your cursor somewhere in the body portion of the page

 between <body> and </body>

Paste the code.

Corrections based on your choices:

You will need to change the following items:

Words at the top of the drop down box (if you do not want "Choose a Database"

The name of the site to be accessed

The address for the site.

Additional locations can be added by inserting

<option>Location1</option> for each location and

window.location="http://www.address1here.com";
break;
case 3:

for each address. Of course the case value will increase.

 

With minor adjustments the code on this page came from the Microsoft support site:

http://support.microsoft.com/default.aspx?kbid=310713 _______________________________________________________

Code:

<h3 align="center">Page Title is here</h3>
<center>
<form>
<p><select name="section" size="1" language="javascript" onChange="gotoPage(this.selectedIndex);">
<option selected>Choose a Database</option>
<option>- - - - - - - - - - - - - - - - -</option>
<option>Location1</option>
<option>Location2</option>
</select></p>
</form>
</center>
<script language="JavaScript">
<!--
function gotoPage(varItem)
{
switch(varItem)
{
case 0:
window.parent.self.status="Goes Nowhere";
break;
case 1:
window.parent.self.status="Goes Nowhere";
break;
case 2:
window.location="http://www.address1here.com";
break;
case 3:
window.location="http://www.address2here.com";
break;
}
}
// -->
</script>