var fDesc=new Array();
fDesc[0] = "Unifier is a tool to convert a batch of plain text or HTML files in various characters set encoding to Unicode in UTF-16 or UTF-8 encoding. Features include auto-update of HTML character-set Meta Tag, converting HTML character and numeric entity to raw unicode character, converting between UTF-16 and UTF-8, config profile and command line mode.
Command-Line operation (Unattended mode) is supported and Unifier can be used as a helper application to convert text files for other applications. The download is a fully functional evaluation version. Simple tutorials are included to demonstrate the features of Unifier.";
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 = '';
}
}