function complete() {
	$("progress").update("100%");
	$("uploadField").update("Your file has been uploaded.");
	
	$("submitButton").enable();
	$("isDisabled").value = 0;
}

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

function ioError() {

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

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

}