﻿function ConfirmCancel() {
    return confirm("Do you really want to cancel?\n\nThe changes that you have made will be lost!");
}
function ConfirmDelete() {
    return confirm("Do you really want to delete this record?");
}
function ConfirmFileDelete(FileName) {
    return confirm("Do You Really Want To Delete File " + FileName + " From This Topic?")
}
