Team:UNIK Copenhagen/test
From 2014.igem.org
(Difference between revisions)
Line 92: | Line 92: | ||
document.write("onMouseOut=\"eHide("" + Titles[i] + "")\"</a>"); | document.write("onMouseOut=\"eHide("" + Titles[i] + "")\"</a>"); | ||
document.write("<font color=\"#0000FF\" size=\"3\" face=\"Arial\">"); | document.write("<font color=\"#0000FF\" size=\"3\" face=\"Arial\">"); | ||
- | + | for (var j = 0; j < Text[i].length; j = j + nCols) | |
+ | { | ||
+ | if (j > 0) | ||
+ | { | ||
+ | document.write(", "); | ||
+ | } | ||
+ | if (Text[i][j + 3] == 1) | ||
+ | { | ||
+ | document.write("<b>" + Text[i][j] + "</b>"); | ||
+ | } | ||
+ | else | ||
+ | { | ||
+ | document.write(Text[i][j]); | ||
+ | } | ||
+ | } | ||
document.write("\n</font></a></td></tr>") | document.write("\n</font></a></td></tr>") | ||
} | } |