<!--
// route search query to WWW or FTP
 function SetAction() { // document.forms[0]
  if (document.search.searchtype[0].checked == true) { 
      document.search.action="/search-bin/webglimpse/data/www/www.apnic.net/search/www";
    }
   else if (document.search.searchtype[1].checked == true) {
    document.search.action="/search-bin/webglimpse/data/www/www.apnic.net/search/ftp";
   }
    else { document.search.action="/search-bin/webglimpse/data/www/www.apnic.net/search/www"; }
     document.search.submit();
    return true;
  }
//------------------------------------------------------//
// quick links navigation
 function changePage(pageLoc)  {
  if(pageLoc == "") { return; }
    else  if(pageLoc != "http://www.apnic.net") { document.location.href = pageLoc;  }
      return; 
  }
//
function change(form) {
//
   var list=form.selectedIndex;
   self.location=form.options[list].value;  
   form.selectedIndex = 0;
}
//
//
 //-->
