var fDesc=new Array();
fDesc[0] = "The .Net ModelKit Suite offers a unified development framework designed to help developers quickly build complex Business Intelligence applications. It provides a solution which simplifies software development, management, and budgeting (renewable annually), minimizes workflow disruptions, and provides unmatched value for your software investment.
Report Sharp-Shooter features a rich set of tools to create even the most sophisticated reports with less time and effort. You can design simple, multicolumn, side-by-side, hierarchical, pivot table, sub-report reports and many others. Easy data visualization with built-in charts, gauges and images provides high performance analytical abilities. End user designer is provided.";
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 = '';
}
}