menuCurrentTopBgColor = '';
menuCurrentTopColor = '#5A574A';
menuClearTopBgColor = '';
menuClearTopColor = '#ffffff';
//menuLeftFix = 0;
//menuTopFix = 1;
//if (isIE) menuTopFix = 0;
menuSubTopFix = 0;

function mailafriend(url) {
  var page = location.href;
  var title = document.getElementsByTagName("TITLE")[0].innerText;
  location.href = "/"+url+"?page="+encodeURIComponent(page)+";title="+encodeURIComponent(title);
  return false;
}

function onclickSearch() {
  // haal het zoekwoord op
  var value = document.getElementById("qq").value;
  // als het niet de default tekst is
  if (value != "Zoeken...") {
    // roep de zoekmachine aan
    location.href = "/cgi/search.cgi?site=be-more;q="+encodeURIComponent(value);
  }
  return false;
}

function onkeySearch(e) {
  // check of er een Enter is gegeven en zo ja roep de onclickSearch functie aan
  return ifEnter(e, onclickSearch);
}

function ifEnter(e, func) {
  // Enter toets gedrukt?
  var keycode;
  if (window.event) {
    keycode = window.event.keyCode;
  } else {
    if (e) {
      keycode = e.which;
    } else {
      return true;
    }
  }
  // Ja!
  if (keycode == 13) {
    // roep meegegeven functie aan
    func();
    return false;
  }
  return true;
}
