<!--
function edit_header() {
	frmFileListing.action="admin_edit_file_type_header.asp";
	frmFileListing.submit();
}

function edit_file_info(file_id) {
	frmFileListing.file_id.value = file_id;
	frmFileListing.action="admin_file_info.asp";
	frmFileListing.submit();
}

function delete_files() {
	var answer = confirm("You are about to delete file records from the METROLink database.     \n"  +
						 "In addition, all associated data (i.e., file upload history and account     \n"+
						 "subscriptions) will be deleted. Please note the actual file will NOT     \n" +
						 "be deleted from the server.\n\n" +
						 "Do you wish to continue?")
	
	if (answer==true) {
		frmFileListing.hdnAction.value = "DELETE";
		frmFileListing.action="admin_file_listing.asp";
		frmFileListing.submit();
	}		
}
//-->
