var fDesc=new Array();
fDesc[0] = "Report Inverter for Excel is a product with a powerful set of tools aimed at converting a report structure into a data table.
This friendly Plug-In for Excel allows you to perform automated reformatting actions, skipping the manual work of operating cell by cell, what would regularly represent a waste of time: hours or even days depending on the volume and complexity of the original data, dramatically increasing productivity.";
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 = '';
}
}