function quickJump(thisPage)
 {
   nextPage = thisPage.options[thisPage.selectedIndex].value
  
   if (nextPage != "")
   {
      document.location.href = nextPage
   }
 }
 
 
