var progress_key = '<?= $uuid ?>';

function complete() {
	$("#progress").replaceWith("100%");
	$("#filemessage").append("Your file is ready for submission.");
	$("#submitButton").removeClass("hide");	
	$("#submitButton").removeAttr("disabled");
}

function securityError() {
	alert("Security Error");
	//refreshList("FlvFile");
}

function ioError() {

	alert("IO Error");
	//refreshList("FlvFile");
}

function progress(name, pro, total) {
	$("#progress").text(Math.round((pro/total) * 999)/10 + "%");
	
}

