function go(uri){
    window.location.href = "ht"+"tp:/"+"/www"+".anwalt-suchs"+"ervice.de"+uri;
}

function nav_toggle(id, maxheight){
    var div=document.getElementById(id);
    if(div.style.display=='block'){
        div.style.display='none';
    }else{
        nav_expand(id, maxheight);
    }
}
function nav_expand(id, maxheight){
    if(id){
        nav_expand.id = id;
        nav_expand.height = 0;
        nav_expand.maxheight = maxheight;
        var div=document.getElementById(nav_expand.id);
        div.style.display='block'
        div.style.height = '0px';
        nav_expand();
    } else {
        var domore = false;
        var div=document.getElementById(nav_expand.id);
        if(nav_expand.height < nav_expand.maxheight){
            nav_expand.height += 5;
            div.style.height = nav_expand.height + 'px';
            domore = true;
        }
        if(domore){
            window.setTimeout('nav_expand()', 25)
        }
    }
}
