function Validate(formName) {
   switch (formName) {
      case "findFast":
         if (document.all.findFast.links.selectedIndex == 0) {
            return false;
         } else {
            location.href="PageServer?pagename="+document.all.findFast.links.options[document.all.findFast.links.selectedIndex].value;
         }
      break;
   }
}