var fDesc=new Array(); fDesc[0] = "Many drawing programs have a large number of brush options which are not needed by most artists. The "brush" in ArtStudio can be changed with a single click and can quickly change from drawing to blending by holding down the Shift key. The color palette is also unique in that you can blend colors together in the same way that a painter would."; 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 = ''; } }