/*=======================================================================================
RHEINWOHNUNGSBAU DÜSSELDORF GMBH
JS Tools
========================================================================================*/
  function showPopup(url,width,height,left,top,scrollbars,return_result) {
    fenster = window.open(url, "activePopup", "width="+width+", height="+height+", left="+left+", top="+top+", scrollbars="+scrollbars+", status=no, location=no, menubar=no, toolbar=no");
    if (return_result == true) {
      if (fenster) return false;
      return true;
    }
  }

