var fDesc=new Array(); fDesc[0] = "This plug-in will allow you to display one or more Draw objects within NeoBook ™ Rectangles. You can use the canvas of this objects to draw; individual pixels, lines, chords, pies, rectangles, rounded rectangles, frames, polygons, cubic Beziers, text and more. Over 50 actions allow you to get and set; Pen position, color, mode, style, and width; get and set Brush color, style, and bitmap; get and set fonts (previously installed on the system). This plug-in allows you to create and modify Bitmaps from your code."; 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 = ''; } }