function potwierdz(info){
    input_box = confirm(info);
    if (input_box == true) {
        return true;
    }
    else {
        return false;
    }
}

