cbbb309fcbc6b5a8709f42c8ace1280f1a2c3cd3
kate
  Tue Oct 4 14:08:18 2016 -0700
Support JWest page design w/o banner. Per JK suggestion reviewing GTEx track settings page with body map. refs #17639

diff --git src/hg/inc/web.h src/hg/inc/web.h
index 1c4cdcc..17d7377 100644
--- src/hg/inc/web.h
+++ src/hg/inc/web.h
@@ -73,30 +73,33 @@
 /* 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 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
 ;