/**
 * @brief Minimalna wysokoś pola dla IE6
 * @param IdPolTekst    - id pola treści
 * @param MinWys        - minimalna wysokośc
 */
function PH_MinWysPol(IdPolTekst, MinWys)
{
    if (document.getElementById(IdPolTekst).offsetHeight < MinWys)
        document.getElementById(IdPolTekst).style.height = MinWys + "px";

}



