function showTab(tab) {
    // hide all tabs
    $('overzicht').style.display = 'none';
    $('kenmerken').style.display = 'none';
    $('omschrijving').style.display = 'none';
    $('fotos').style.display = 'none';
    $('kadastralekaart').style.display = 'none';
    $('details_content').style.height = '';
    $('routekaart').style.left = '-9999px';
    
    if(tab != 'routekaart') {
        $(tab).style.display = 'block';
    } else {
        $('routekaart').style.left = 215 + 'px'
        $('details_content').style.height = 450 + 'px';
    }
}

function goToHuis(alias) {
    if(alias != '') {
        window.location = '/aanbod/' + alias;
    }
}
