var fDesc=new Array();
fDesc[0] = "Novel Factory is a novel writing software that helps you achieve your writing goals. The app offers a step-by-step guide to take you through the various stages of writing a novel, from coming up a with a robust premise to fleshing it out into a solid skeleton. Also, it helps you create objective orientated scenes, develop your characters, themes through the various stages of drafting.";
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 = '';
}
}