// Prompts the user for an Ok/Cancel response to a question/statement.
function ConfirmUser(sQuestion)
{
    return confirm(sQuestion);
}