a932a051a990323490611aaf898b3e1113f65e6e
markd
  Mon Jan 13 17:08:56 2014 -0800
open link to GENCODE tags descirpiton in another tab
diff --git src/hg/hgc/gencodeClick.c src/hg/hgc/gencodeClick.c
index 2857dc2..1a6cb94 100644
--- src/hg/hgc/gencodeClick.c
+++ src/hg/hgc/gencodeClick.c
@@ -607,31 +607,31 @@
 printf("</tbody></table>\n");
 slFreeList(&supportEvids);
 }
 
 static void writeTagEntry(struct wgEncodeGencodeTag *tag)
 /* write HTML table entry for a Tag */
 {
 // FIXME: link to help once gencodegenes.org has it
 printf("<td width=\"33.33%%\">%s", tag->tag);
 }
 
 static void writeTagLinkHtml(struct wgEncodeGencodeTag *tags)
 /* write HTML links to Tag */
 {
 printf("<table class=\"hgcCcds\"><thead>\n");
-printf("<tr><th colspan=3><a href=\"%s\">Tags</a></tr>\n", gencodeTagsUrl);
+printf("<tr><th colspan=3><a href=\"%s\" target=_blank>Tags</a></tr>\n", gencodeTagsUrl);
 printf("</thead><tbody>\n");
 int i, rowCnt = 0;
 struct wgEncodeGencodeTag *tag = tags;
 while ((tag != NULL) || (rowCnt == 0))
     {
     printf("<tr>");
     for (i = 0; i < 3; i++)
         {
         if (tag != NULL)
             {
             writeTagEntry(tag);
             tag = tag->next;
             }
         else
             printf("<td width=\"33.33%%\">");