<!-- 
function get_path() {
    var navigVer = parseInt(navigator.appVersion.substring(0,4))
    var navigIE = (navigator.appName.substring(0,2)=="MS" || navigator.appName.substring(0,9)=="Microsoft")
    var navigNS = (navigator.appName.substring(0,8)=="Netscape")
    if (navigIE && navigVer < 4) {
        return document.location
    } else {
        return document.location.pathname
    }
}

function set_seite() {
    var hostname=location.protocol+"://"+location.host
    if (location.port != 80) {hostname += ":"+location.port}
    var hostname=location.protocol+"//"+location.host
    var path = get_path();
    var win = parent.head;
    if (win != null) {
        win.location="http://www.psychotherapie.de" + path
    } else {
        path=get_path(); path=hostname+path
        if (confirm("PSYCHOTHERAPIE\nzeigt Ihnen die druckbare Version der Seite.\nWollen Sie zur vollständigen Darstellung dieser Seite wechseln?")) {
            top.location=path+"l";
        } else {
            document.write("<center><font class=\"text\"><b><a href=\""+path+"l"+"\" onmouseover=\"status='Zur vollständigen Seitendarstellung';return true\" onmouseout=\"status='';return true\"><font color=\"#0000DD\"><u>Zur vollständigen Darstellung dieser Seite.</u></font></a></b></font></center>")
        }
    }
}

set_seite()
//-->