
  function openWindowCustom(url, wndName, breite, hoehe, menu_s, tool_s, scroll_s) {

    var wndAddon = '';

    if (document.all || document.layers) {
      var w = screen.availWidth;
      var h = screen.availHeight;

      var leftPos = (w - breite) / 2;
      var topPos = (h - hoehe) / 2;

      var wndAddon = ',top=' + topPos + ', left=' + leftPos
    }

    var win = 'toolbar=' + tool_s + ',location=0,directories=0,menubar=' + menu_s + ',scrollbars=' + scroll_s + ',status=0,target=_blank,width=' + breite + ',height=' + hoehe + wndAddon;
    var msg = open(url, wndName, win);
    msg.focus();

  }


	function goURLConfirm(url, question) {

	  if ( window.confirm(question) ) {
	    document.location.href = url;
	  }

	}


	function printSearch(sSearchTerm) {
		var url = 'search_print.asp?suche=' + sSearchTerm;
		openWindowCustom(url, 'podologenliste_print', 585, 550, 1, 0, 1)
	}


	function focusSearchfield() {
		document.podologensuche.suche.focus();
	}


	function focusRequestfield() {
		document.antrag.ansprechpartner.focus();
	}


	function focusContactfield() {
		document.kontakt.ansprechpartner.focus();
	}
