var fDesc=new Array();
fDesc[0] = "FTDI EVE Screen Editor is a Windows based tool designed to allow EVE (FT800 series) customers to experiment with creating display lists, utilizing a simple “drag and drop” method to control the EVE graphics controller. Also available within the tool is the ability to connect to external hardware such as a VM800B allowing designs to be displayed on real hardware as well as on the PC screen.";
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 = '';
}
}