var fDesc=new Array();
fDesc[0] = "StoryBox 2 is a free to use app that allows you to write your stories.
Main features:
- Support multiple Authors and Pen Names.
- Easily combines sales for books that have title variations from vendor to vendor.
- Track sales for every title and chart your sales and income progress.
- Group and sort reports by any column.
- Export reports to XLS, PDF, CSV and HTML.";
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 = '';
}
}