var fDesc=new Array();
fDesc[0] = "AbiWord is a free word processing program similar to Microsoft® Word. It is suitable for a wide variety of word processing tasks.
AbiWord is unique among word processors in its drive to become a fully cross-platform word processor.
Main features:
- Familiar interface
- Outstanding file import and export, with support for MS Word, WordPerfect, and more
- Unlimited undo and redo capacity
- Solid (X)HTML export, with CSS styles support
- Images
- Spelling support, with optional underlining
- Bullets and Lists
- Styles";
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 = '';
}
}