3f614ecb19f4e55c92f6d7948abea4f36608ab77
braney
  Fri Apr 17 15:19:15 2015 -0700
a momentous decision (per Brianl) to change the redirect statement

diff --git src/hg/lib/web.c src/hg/lib/web.c
index 8f2a988..ac0b0d1 100644
--- src/hg/lib/web.c
+++ src/hg/lib/web.c
@@ -1452,28 +1452,28 @@
             char *newUri = needMem(newUriSize);
             char *oldUri = needMem(newUriSize);
             safef(oldUri, newUriSize, "http%s://%s:%s%s%sredirect=manual&source=%s", 
 		cgiServerHttpsIsOn() ? "s" : "", oldDomain, port, uri, sep, oldDomain);
             safef(newUri, newUriSize, "http%s://%s:%s%s%sredirect=manual&source=%s", 
 		cgiServerHttpsIsOn() ? "s" : "", newDomain, port, uri, sep, oldDomain);
 
 	    printf("<TR><TD COLSPAN=3 id='redirectTd' onclick=\"javascript:document.getElementById('redirectTd').innerHTML='';\">"
 	    "<div style=\"margin: 10px 25%%; border-style:solid; border-width:thin; border-color:#97D897;\">"
 	    "<h3 style=\"background-color: #97D897; text-align: left; margin-top:0px; margin-bottom:0px;\">"
 	    "&nbsp;You might want to navigate to your nearest mirror - %s"
 	    "</h3> "
 	    "<ul style=\"margin:5px;\">",
 	    newDomain);
 	    
-	    printf("<li>User settings (sessions and custom tracks) will differ between sites."
+	    printf("<li>User settings (sessions and custom tracks) <B>will differ</B> between sites."
 		"<idiv style=\"float:right;\"><a href=\"../goldenPath/help/genomeEuro.html#sessions\">Read more.</a></idiv>");
 	    printf("<li>Take me to  <a href=\"%s\">%s</a> </li>",
 		newUri, newDomain);
 	    printf("<li>Let me stay here   <a href=\"%s\">%s</a>",
 		oldUri, oldDomain );
 	    printf("</div></TD></TR>\n");
             exit(0);
             }
         hDisconnectCentral(&centralConn);
         }
     }
 }