protected SeriesInfo getSeriesInfoObj(Object o) {
   if (o instanceof sage.vfs.MediaNode) o = ((sage.vfs.MediaNode) o).getDataObject();
   if (o instanceof SeriesInfo) return (SeriesInfo) o;
   // See if we can go Show->Series
   Show s = getShowObj(o);
   return (s != null) ? s.getSeriesInfo() : null;
 }