var fDesc=new Array();
fDesc[0] = "The new revised GLiPIC Utilty now works with the KS0108, T6963 and the Sed1330 controller based LCD displays using PicBasicPro 2.32 applications!
Features:
- Works with the T6963C, Sed1330 and KS0108 controller based LCD displays
- Save, read and display from an external I2C eeprom
- Edit and save BMP images
- Place text in graphic area (selectable fonts and sizes)
- 5 LCD sizes to select from
- Optimized conversion routines";
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 = '';
}
}