Drop Down Box with automatic redirect




Put this between your BODY-tags:
<Script Language="JavaScript">
<!-- Hide the script from old browsers --
function goto(form) { var index=form.select.selectedIndex
if (form.select.options[index].value != "0") {
location=form.select.options[index].value;}}//--> </SCRIPT>
<FORM NAME="form1">
<SELECT NAME="select" ONCHANGE="goto(this.form)" SIZE="1">
<OPTION VALUE="">-------Choose a Selection-------
<OPTION VALUE="../../../index.htm">Home
<OPTION VALUE="http://winfolinx.com">Winfolinx
<OPTION VALUE="http://www.infolinx-no.com">Infolinx, Norwegian page
<OPTION VALUE="../../tips.htm">Winfolinx-Tips
<OPTION VALUE="../howindx.htm">Winfolinx-Scripts and Trix
</SELECT>
</FORM>

Free JavaScripts provided
by Winfolinx.com

Back