<script type="text/javascript"> <!-- // original code by Bill Trefzger 12/12/96 function go1(){ if (document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value != "none") { location = document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value } } //--> </script> <script type="text/javascript"> <!-- document.write('<form name="selecter1"><select name="select1" size=1>'); document.write('<option value=none>Select your destination'); document.write('<option value=none>--------------------'); document.write('<option value="page1.html">Page 1'); document.write('<option value="page2.html">Page 2'); document.write('<option value="page 3.html">Page 3'); document.write('</select>'); document.write(' <input type="button" value="Go" onclick="go1()">'); document.write('</form>'); // end hiding contents --> </script>