var isMac = (navigator.appVersion.indexOf("Mac") != -1) ? true : false
var isSa = (navigator.userAgent.indexOf("Safari") != -1) ? true : false
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="con">')
document.write('<span style="font-size:65%">&nbsp;<br></span>')
document.write('<select NAME="urlList" onChange="goThere(this.form)" style="font-size: x-small; font-family: Arial,Helvetica;">')
document.write('<option selected value="----"> Contents </option>')
document.write('<option value="index.html">› Home</option>')
document.write('<option value="page2.html">› Real Estate</option>')
document.write('<option value="page3.html">› Employment</option>')
document.write('<option value="page4.html">› Business</option>')
document.write('<option value="page5.html">› Government</option>')
document.write('<option value="page6.html">› Style & Events</option>')
document.write('<option value="page7.html">› Media</option>')
document.write('<option value="page8.html">› Sports</option>')
document.write('<option value="page9.html">› Shopping</option>')
document.write('<option value="page10.html">› Health</option>')
document.write('<option value="page11.html">› Religion/Charities</option>')
document.write('<option value="page12.html">› Libraries</option>')
document.write('<option value="page13.html">› Arts/Entertainment</option>')
document.write('<option value="page14.html">› Dining/Travel</option>')
document.write('<option value="page15.html">› Reference</option>')
document.write('<option value="page16.html">› Technology</option>')
document.write('<option value="page5.html">› Education</option>')
document.write('<option value="page11.html">› Organizations</option>')
document.write('</select>')
document.write('</form>')
var wstr=unescape(window.location.href)
var np=false
var nm
if(wstr.indexOf("index.html") != -1)np=true
if(wstr.indexOf("html") == -1)np=true
if(!np) {
var s=wstr.lastIndexOf("page")
var w=wstr.indexOf("html")
nm=parseInt(wstr.substring(s+4,w-1))
} else nm=1
document.con.urlList.options[nm].selected=true
