Small bug in include_jump_to.asp... it should not jump anywhere if you choose:

... but it does (default.asp). This would also happen if you choose "Select Forum".
The fix is around line 42 on inc_jump_to.asp.
Change:
Response.Write " <select name=""SelectMenu"" size=""1"" onchange=""jumpTo(this)"">" & vbNewline & _
To:
Response.Write " <select name=""SelectMenu"" size=""1"" onchange=""if (this.value != ''){jumpTo(this);}"">" & vbNewline & _
The reason I didn't change it in the jumpTo function is because that function is on many different pages (active.asp, forum.asp, etc.).
Another suggestion would be to make common Javascript functions into .js files and add them as javascript include files to the needed pages.

Edited by - aaron s. on 02 April 2002 18:52:54