var fDesc=new Array();
fDesc[0] = "EX-word TextLoader, which is to transfer text data to CASIO electronic dictionaries, is the free software authorized by CASIO. You can display and read text data transferred by EX-word TextLoader on supported models of CASIO electronic dictionaries.
Transferred data can be stored both in the internal memory and a commercially available memory card compatible with the product. Only plain text files(.txt) can be transferred. Up to 5MB/file can be transferred.";
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 = '';
}
}