var fDesc=new Array();
fDesc[0] = "Klipfolio Dashboard is software you can use to stay on top of stuff that matters to you. Software that does this is called a dashboard, and Klipfolio Dashboard is the smallest and most flexible dashboard on the planet.
Give your organization at-a-glance awareness of key performance indicators.
Customizable date ranges, flexible filter logic and Klip printing provide users with more self-service options for visualizing data.";
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 = '';
}
}