include('user_inc.htm'); if ($_SERVER[REQUEST_METHOD] == "POST") { $libraryGUID = $_POST['libraryGUID']; $sourceGUID = $_POST['sourceGUID']; // Required to support the operation in progress dialog. $operationInProgress = true; $status = new ReturnStatus(); unload_drive($user, $libraryGUID, $sourceGUID); print $status->out(); return; } else { // Get the number of logical libraies so we know if we need to bring up the partition Slect page or not. $libs = get_logical_libraries_brief($user); $lib_count = count($libs); } ?>