function heightt(parameter) {
    var q = document.body.clientHeight;
    document.getElementById("search_table").style.height = (q - parameter - 1) + 'px';
    
    surface = document.getElementById("gSurface");
    if (surface != null) 
    {      
        surface.style.marginBottom="10px";
    }
} 
