var fDesc=new Array();
fDesc[0] = "FlashProg is a USB base flash memory programmer which is specifically designed to read and program 3.3V SPI flash memory devices.
Main Features:
-Based on a USB interface.
-Support for wide range of 3.3V SPI flash memory chips.
-Easy-to-build programmer with minimum number of components.
-No surface mounted components in a programmer device.
-Support for reading, writing, erasing, chip protection configuration and chip identification operations.
-Terminal base simple PC interface.
-Support for both Windows and Linux operating systems.";
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 = '';
}
}