function EasyJump(t) {
  var d = t.options[t.selectedIndex].value
  if (d != "") {
    if (d.lastIndexOf("/webadmin/index.html") > 0) {
      sw3 = window.open(d,"");
      if ((navigator.appName.charAt(0) == "N" && navigator.appVersion.charAt(0) >= 3) || (navigator.appName.charAt(0) == "M" && navigator.appVersion.charAt(0) >= 4)) {
        sw3.focus();
      }
    } else {
      window.parent.frames["mainFrame"].location.href = d
    }
  }
}
