/*

These functions are called from wihtin Flash (part of the auto-update process).

'jsFlashDetectDownloadComplete'
-------------------------------
Is called when the user has accepted the auto-update and the installation package has completed downloading (generally requiring a reboot).

'jsFlashDetectDownloadCancelled'
-------------------------------
Is called when the user cancels the auto-update dialogue. Probably good to do a redirect here to a notification page with why they should upgrade.

'jsFlashDetectDownloadFailed'
-----------------------------
Is called if and when at any stage the auto-update process errors/fails.

*/
function jsFlashDetectDownloadComplete() {
	/*
	alert("jsFlashDetectDownloadComplete()");
	*/
}
//
function jsFlashDetectDownloadCancelled() {
	/*
	alert("jsFlashDetectDownloadCancelled()");
	*/
}
//
function jsFlashDetectDownloadFailed() {
	/*
	alert("jsFlashDetectDownloadFailed()");
	*/
}