function changePage(newLoc)
 {
   nextPage = newLoc.options[newLoc.selectedIndex].id
		
   if (nextPage != "")
   {
      document.location.href = nextPage
   }
 }
 