f16abb2f99276fcf1811ef04f4f767ce1631c4c7
kate
  Wed Nov 16 16:27:45 2016 -0800
Cleanup CSS. refs #17369

diff --git src/hg/inc/web.h src/hg/inc/web.h
index 17d7377..6bbb429 100644
--- src/hg/inc/web.h
+++ src/hg/inc/web.h
@@ -70,36 +70,39 @@
    Allows use of jsBeginCollapsibleSection() */
 
 void webNewSectionHeaderEnd();
 /* Properly close header of collapsible section on web page */
 
 void webEnd();
 /* output the footer of the HTML page */
 
 void webEndSection();
 /* Close down a section */
 
 void webEndSectionTables();
 /* Finish with section tables (but don't do /BODY /HTML lik
  * webEnd does. */
 
+void webStartGbNoBanner(struct cart *cart, char *db, char *title);
+/* Start HTML with new header and footer design by jWest, but no banner */
+
+void webEndGb();
+/* End HTML that was started with webStartJWest. */
+
 void webStartJWest(struct cart *cart, char *db, char *title);
 /* Start HTML with new banner design by jWest (with modifications). */
 
-void webStartJWestNoBanner(struct cart *cart, char *db, char *title);
-/* Start HTML with new header and footer design by jWest, but no banner */
-
 void webEndJWest();
 /* End HTML that was started with webStartJWest/ */
 
 void webVaWarn(char *format, va_list args);
 /* Warning handler that closes off web page. */
 
 boolean webGotWarnings();
 /* Return TRUE if webVaWarn has been called. */
 
 void webAbort(char* title, char* format, ...)
 /* an abort function that outputs a error page */
 #if defined(__GNUC__)
 __attribute__((format(printf, 2, 3)))
 #endif
 ;