function enableButton(whatButton) {
	whatButton.disabled = null;	
}

function downloadFile(filename, fileFullPath) {
	document.location.href = 'client-files-download.cfm?user=' + escape(filename) + '&file=' + escape(fileFullPath);
}
