<!--

	// Standard legal prompt
	var legalPrompt = "\nBy downloading and using this software you have agreed to the terms and conditions of use, as laid out on the licence conditions page, available at:\nhttp://www.expdigital.co.uk/licence_conditions.htm\nIf you do not agree with the license or do not wish to proceed please click the cancel button\nOtherwise hit okay to begin your download!";

	// Start a download with licence confirm
	// @param NameOfDownloadItem The name of the item to be downloaded as displayed to the user (eg GFlux Windows Installer)
	// @param DownloadSize The size in mB of the download. You dont need to put mb or anything, just a size (eg for 1.44mb write 1.44)
	// @param FolderPath The relative folder path of the download location
	// @param FileName The name of the file to download
	function start_download(NameOfDownloadItem, DownloadSize, FolderPath, FileName)
	{
		// First construct a prompt for the user, including name and download size
		var thePrompt = "You have chosen to download " + "\n\n" + NameOfDownloadItem + "\n\nWhich is " + DownloadSize + "Mb in size\n" + legalPrompt;
		
		// Now we need to construct the file path
		// The file path is given relative as a folder
		var theFilePath = FolderPath + "/" + FileName;
		
		// If they confirm then we start the download
		if (confirm(thePrompt))
		{
			document.location.href = theFilePath;
		}
	}

-->
