var fDesc=new Array(); fDesc[0] = "EZ Paint is a free alternative program to MS Paint for your Windows XP, Vista, 7 or 8 OS that has many of the same shortcuts and features. For instance, The left and right mouse buttons function the same way as in MS Paint with each button corresponding to one of the two available brushes. In addition, Control and Shift when used with the mouse provide the same stamp and trail functions as well. The arrow keys are used in a similar fashion to move selections in fine precise increments."; 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 = ''; } }