var fDesc=new Array(); fDesc[0] = "Drawpile is a Free/Libre networked drawing program that allows multiple people to sketch on the same image simultaneously. It works with applications such as MyPaint, Krita, and GIMP. You can paint with a pixel pen, a soft brush or a watercolor brush. Brushes can be organized into presets and quick access tabs. Use a dedicated eraser tool or turn any brush into an ad hoc eraser. Both brushes and layers support various color blending modes."; 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 = ''; } }