function open4flexWindow(url,width,height) {
  if(typeof width == 'undefined') { var width = 600; }
  if(typeof height == 'undefined') { var height = 500; }
  var win=window.open(url, "opinion", "width=" + width + ", height=" + height + ", status=yes, resizable=yes, scrollbars=yes");
}

// löscht den Begriff 'Suchbegriff' aus dem Suchformular
function clearSearch(def) {
  if(document.getElementById('searchform').query.value == '') {
    document.getElementById('searchform').query.value = def;
  } else if(document.getElementById('searchform').query.value == def) {
    document.getElementById('searchform').query.value = '';
  }
}

// Druckansicht aufrufen
function printView() {
  url = location.href;
  if(url.indexOf('?') >= 1) {
    win = window.open(url + "&master=47","lust_print","");
  } else {
    win = window.open(url + "?master=47","lust_print","");
  }
}