This Javascript will display an ordinary-looking menu . Once a link is selected, the visitor is automatically taken to the website without hitting "Go!" or anything.
Add the below code to the <body> section of your page:
<scriptlanguage="javascript"type="text/javascript"> /* Visit http://www.yaldex.com/
for full source code
and get more free JavaScript, CSS and DHTML scripts! */
<!-- Begin function
formHandler(form){ varURL=document.form.site.options[document.form.site.selectedIndex].value; window.location.href=URL;
} // End --> </script> <formname="form">
<selectname="site"size=1onChange="javascript:formHandler()">
<optionvalue="">Go
to.... <optionvalue="http://www.yahoo.com">Yahoo <optionvalue="http://www.metacrawler.com">Metacrawler <optionvalue="http://www.altavista.digital.com">Altavista <optionvalue="http://www.webcrawler.com">Webcrawler <optionvalue="http://www.lycos.com">Lycos <optionvalue="http://www.yaldex.com/JSFactory_Pro.htm">JavaScript
Editor </select>
</form>