var fDesc=new Array();
fDesc[0] = "This is an introduction to the new YABOT (that's Yet Another Build Order Tester) Build Order Editor. This editor makes adding new builds from http://www.sc2builds.com/ to a YABOT SC2Bank file much easier than manually editing with notepad.
Adding builds can be done in one of two ways: Copy and pasting an encoded build order into the editor, or clicking a link on the sc2builds page via magnet links, which you will now find on each build order.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}