function goToPage2() {

  PageIndex2=document.form2.select2.selectedIndex

  if (document.form2.select2.options[PageIndex2].value != "none") {
    location = document.form2.select2.options[PageIndex2].value
  }

}

function goToPage3() {

  PageIndex3=document.form3.select3.selectedIndex

  if (document.form3.select3.options[PageIndex3].value != "none") {
    location = document.form3.select3.options[PageIndex3].value
  }

}

function clearDefault(el) {
  if (el.defaultValue==el.value) el.value = ""
}
