summaryrefslogtreecommitdiff
path: root/plugins/menu.formelements.js
blob: dbf9562f2fe1147b50135e9848c14a678826023d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
AlertMsg = "Sorry, that\'\s not a valid page."

function MenuNavSelect(form,elt) {
  if (form != null) {
    if(form.elements[elt].selectedIndex.value == 0) {
      alert(AlertMsg);
      form.elements[elt].selected='true';
    } else {
      window.location = form.elements[elt].options[form.elements[elt].selectedIndex].value;
    }
  }
}