function confirmDialog(A) {
    if (!confirm(A)) {
        return false;
    }
    return true;
}
