var isNav = (navigator.appName == "Netscape") ? true : false
function goThere(form) {
   var newloc 

     if(isNav) {
        newloc = form.urlList.options[form.urlList.selectedIndex].value
      } else {
        newloc = form.urlList.value
      }  
      if(newloc != "----")window.location.href  = newloc
}
document.write('<form name="sol">')
document.write('<small><small><font face="Arial,Helvetica" size="1"><select NAME="urlList" onChange="goThere(this.form)" style="font-size: xx-small; font family: Arial,Helvetica">')
document.write('<option selected value="----">-- J2EE</option>')
document.write('<option value="s1.html">› Weather Magnet</option>')
document.write('<option value="s2.html">› Server Queries</option>')
document.write('<option value="s3.html">› Market Bugs</option>')
document.write('<option value="s4.html">› Search Tools</option>')
document.write('<option value="----">-- Java Applets</option>')
document.write('<option value="s5.html">› Calculators</option>')
document.write('<option value="s6.html">› Calendars</option>')
document.write('<option value="s7.html">› Blogger Calendars</option>')
document.write('<option value="s12.html">› Java Media Player</option>')
document.write('<option value="----">-- DHTML </option>')
document.write('<option value="s8.html">› MouseOvers</option>')
document.write('<option value="----">-- Headline Feeds </option>')
document.write('<option value="s9.html">› News Headlines</option>')
document.write('<option value="----">-- PHP Tools </option>')
document.write('<option value="s10.html">› PHP Solutions</option>')
document.write('<option value="----">-- Misc. </option>')
document.write('<option value="s11.html">› Technorati Blog Rank Tool</option>')
document.write('</select></font></small></small></form>')
var str=unescape(window.location.href)
var w=str.indexOf("html")
var nm=parseInt(str.substring(w-2,w-1))
if(str.indexOf("s10.html") != -1)nm=15
else if(str.indexOf("s8.html") != -1)nm=11
else if(str.indexOf("s9.html") != -1)nm=13
else if(str.indexOf("s11.html") != -1)nm=17
else if(str.indexOf("s12.html") != -1)nm=9
else if(nm>9)nm=nm+4
else if(nm>8)nm=nm+3
else if(nm>4)nm++
document.sol.urlList.options[nm].selected=true
