var fDesc=new Array();
fDesc[0] = "The program may convert plain text (*.txt or *.html files) from GB coding to Big5 coding, or from Big5 coding to GB coding.
Features:
- Convert text pasted from the clipboard.
- Convert one file into another file.
- Convert multiple files in a folder.
- Update the charset tag of html files.";
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 = '';
}
}