var fDesc=new Array();
fDesc[0] = "This suite contains applications for both office work as well as applications for more artistic tasks.
Aplications inlcluded:
Words - A frame-based word processor that can work in two modes: page oriented or layout oriented
Sheets - A powerful spreadsheet application.
Stage - A full-featured presentation program.
Kexi - An integrated environment for creating databases and database applications.";
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 = '';
}
}