var fDesc=new Array();
fDesc[0] = "PLM2000 is the Program Loader Module software used to edit and upload/download all the necessary ECR preset data between PC and ECR.
From PLU, Clerk, Customer File to Table Plan and more, PLM2000 will help an operator to easily program an ECR.
PLM2000 covers all ECR models and is constantly updated as a new feature becomes available.";
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 = '';
}
}