var fDesc=new Array();
fDesc[0] = "WorldPad is a basic text editor whose main distinction is the ability to display text in complex scripts using Graphite, a programmable rendering engine particularly suited to complex minority scripts. WorldPad can also be used to work with text in a simple "Roman" scripts.
Some of WorldPad's text-editing features include multilingual text processing, named styles, right-to-left paragraph orientation, and mixed direction text flow handling. The installation program here includes the WorldPad program, the Graphite engine and font compiler, and a few sample Graphite fonts.";
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 = '';
}
}