//Handle the jumping for the FAQ page
function jump()
   {
   var w = document.faqform.faqlist.selectedIndex;
   var url_add = document.faqform.faqlist.options[w].value;
   window.location.href = url_add;
   }

