function check_search_form() {
    d = document.forms[0];
    if (!d.s.value.match('^[^ ]*$')) {
        alert('nur 1 Wort');
        d.s.focus ();
        return false;
    }
    if (!d.s.value.match('^[^"]*$')) {
        alert('1 Wort ohne "');
        d.s.focus ();
        return false;
    }
    if (!d.s.value.match("^[^']*$")) {
        alert("1 Wort ohne '");
        d.s.focus ();
        return false;
    }
    if (!d.s.value.match(/^[\S]{3,}$/)) {
        alert('mindestens 3 Buchstaben oder Ziffern');
        d.s.focus ();
        return false;
    }
  return true;
}
function check_search_form_input() {
  d = document.forms[0];
//  if (!d.s.value.match('^[a-zA-Z0-9äöüßÄÖÜ\.-]+$')) {
  if (!d.s.value.match('^[^"\' \.\,\;\:]*$')) {
    // alert('nur 1 Wort aus Buchstaben oder Ziffern');
    x = d.s.value.length;
    if (x > 1) d.s.value = d.s.value.slice(0, d.s.value.length - 1); /* not yet correct */
    d.s.focus ();
    return false;
  }
  return true;
}
if (top.frames.length > 0) top.location.href=self.location;

