var checkBooking = function () {
        sb = document.getElementById("sidebar");
        con = document.getElementById("contentstart");

        sb.style.height = con.offsetHeight;
}

window.onload = checkBooking;

