var fDesc=new Array();
fDesc[0] = "Easy Key Edit is a free software tool that allows you to select and edit text entries and more. In order to install this software you need to download the download manager from the site;after you download that you can select which easy key product you would like to download and install.";
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 = '';
}
}