var fDesc=new Array();
fDesc[0] = "The Most Compatible Office Suite -Light, Fast, Low cost.
Latest Writer, Presentation and Spreadsheets.--It includes innovative features such as file roaming, paragraph layout and drag-and-drop table editing tools, as well as most common features you are familiar with. View, edit and create almost any document type-all fully compatible with Microsoft Office® and Google Docs. This office suite is robust and efficient enough to be trusted with even your most complicated office tasks.";
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 = '';
}
}