﻿// JScript File
/*
function ConfirmDownload(theSelectionList)
{
    
    for (x=0; x<theSelectionList.length; x++)
    {
        if ((theSelectionList[x].selected == true) && (theSelectionList[x].value != "0"))
        {
        if (confirm("Download the selected file?"))
                return true;
                document.GetElementById('selectedDocument').value = theSelectionList[x].value;
            else
            {
                theSelectionList[0].selected = true;
                return false;
            }
        }
    }
    
    return false;

}
*/