function set_html_element_min_height(elem_id, min_width)
{
    var elem = document.getElementById(elem_id);
    
    if (elem != null)
    {
        if (elem.clientHeight < min_width) elem.style.height = min_width+'px';
    }
}

function doLogOut()
{
    var r=confirm("Ar tikrai norite atsijungti nuo sistemos?");
    if (r==true)
    {
        return true;
    }
    else
    {
        return false;
    }
}
