var fDesc=new Array(); fDesc[0] = "Design and print on paper grids of any size and style - configure horizontal and vertical lines separately (you can turn them on and off) as well as page margins. You can configure line style, width, color. The grid doesn't have to be square, vertical and horizontal lines can be spaced apart from 1 to 200 mm."; 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 = ''; } }