﻿function Obresti_ShowHidePomoc(targetControlID) {

    if ($("#" + targetControlID).css("display") == "inline") {
        $("#" + targetControlID).css("display", "none");
    }
    else {
        $("#" + targetControlID).css("display", "inline");
    }
}

function Obresti_ResetFields() {
 
    //TextBox-es
    $(".masterform").find(":text").val("");

    //RadioButton
    //$(".masterform").find(":radio").eq(1).attr("checked", "true");

    //chackBox-es
    //$(".masterform").find(":checkbox").removeAttr("checked");

    return false;   
}
