English
<!-- Add the following code to the <body> area --> <!-- web http://www.downcodes.com --> <!-- bbs http://www.downcodes.com/bbs- -> <!-- Script description: Add the following code to the <body> area --> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin site = "http://www.downcodes.com/js"; //Be careful not to add "/" to the address function combineMenus(frm, menu1, menu2) { with (frm) { str = menu1.options[menu1.selectedIndex].value; str += menu2.options[menu2.selectedIndex].value ; url = site + "/" + str + ".htm"; window.location.href = url; } } // End --> </script> <form name=menufrm> <select name=menu1> <option value="">Time class</option> <option value="time">time</option> </select> <select name=menu2> <option value="">Which</option> <option value= "1">1</option> <option value="2">2</option> <option value="3">3</option> </select> <input type=button value="Select" onClick ="combineMenus(this.form, this.form.menu1, this.form.menu2)"> </form>