var fDesc=new Array(); fDesc[0] = "WhiteBoard Draw is a drawing program which provides a wide range of editing tools and features to create or edit complex designs. You can draw with red, green, blue, and black markers. You may use the eraser to clean up the whiteboard. Right-click on the board to set a start point and then start typing. Markings on the whiteboard are automatically saved when the program is closed."; 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 = ''; } }