﻿// Prompts the user for an Ok/Cancel response to a question/statement.
function ConfirmUser(sQuestion)
{
    return confirm(sQuestion);
}

// This function opens the generic file download screen to download a prepared file
function OpenDownloadFile()
{
    window.open('download.aspx');
}
