function goToPage() 
{
   var URL = document.form.site.options[document.form.site.selectedIndex].value;
   if (URL != "!") {
      window.location.href = URL;
   }
   else {  // ignore non-URL items
      return;  // no link
   }
}