home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 April / PCWorld_1999-04_cd.bin / Software / TemaCD / Stones / webwri2e.exe / menu.js_ / menu.js
Text File  |  1997-10-17  |  555b  |  18 lines

  1. <!-- 
  2. // original code by Bill Trefzger 12/12/96
  3. function go(){
  4. if (document.selecter.select1.options[document.selecter.select1.selectedIndex].value != "none") {
  5. location = document.selecter.select1.options[document.selecter.select1.selectedIndex].value
  6.  }                       
  7. }
  8. //-->
  9. </script>
  10.  
  11. <script language="JavaScript"> 
  12. <!-- 
  13. document.write('<form name="selecter"><select name="select1" size=1>');
  14.  
  15. document.write('</select>');
  16. document.write('<INPUT TYPE="button" VALUE="Go" onclick="go()">');
  17. document.write('</form>');
  18. //-->