

  /* ------------------------ form management -------------------- */
  
   function surfto(form) {
    var myindex=form.country.selectedIndex;
 if (form.country.options[myindex].value.match("http") == "http") {
     window.open(form.country.options[myindex].value);
 }
 else {
     location=form.country.options[myindex].value;
    }
  }


  
  function setfocus() {
   // document.search.opensearch.focus();
    //document.search.opensearch.select();
  }
  
  function closeWindow() {
  self.close();
  return false;
  }
  
  
    
 