var fDesc=new Array();
fDesc[0] = "Next Analytics for Excel lets you open a spreadsheet, click a button, and your up-to-date data shows from Google Analytics, Facebook, Twitter, LinkedIn, corporate databases, and more.
There's no need for an intermediate save to CSV and import so it's a huge timesaver and reduces the complexity of distributing dashboards and reports to business users. To ensure immediate ROI, we ship it with over a 100 free dashboards, plus there's a powerful interactive mode that lets people build their own refreshable dashboards.";
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 = '';
}
}