
function callGoogleSearch() {
  if (document.getElementById("q").value) {
    document.location.href = "http://www.google.ch/search?hl=de&q=" + encodeURI(document.getElementById("q").value);
  }
  return false;
}
