var fDesc=new Array();
fDesc[0] = "Easy-KeyMerger is an automation tool which handles documents.
The Easy-Key programs are designed specifically for members of Wycliffe Associates (UK) to use in keyboarding for the Worldwide Electronic Book & Bible Service (WEBBS). The main program (Easy-KeyEdit) is tailored specifically to enable users to produce diacritics that are not normally available on a standard English keyboard. The remaining programs provide additional facilities for editors and file checkers to use.";
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 = '';
}
}