private void resetRegion_Click(object sender, EventArgs e)
 {
     if (_regionManager.GetWhetherRegionIsOnline(CurrentRegionID))
     {
         DialogResult r = Utilities.InputBox("Are you sure?", "Are you sure you want to reset this region (deletes all prims and reverts terrain)?");
         if (r == DialogResult.OK)
         {
             _regionManager.ResetRegion(CurrentRegionID);
         }
     }
     else
     {
         MessageBox.Show("The region is not online, please turn it online before doing this command.");
     }
 }