var fDesc=new Array();
fDesc[0] = "Ema Personal Wiki is a notebook with linkable pages for tracking your ideas, information, todo lists, tasks, bookmarks, projects, notes, brainstorms – in short, your life – in the most flexible way. It has two versions: an Android and a Windows version, which are synchronized with your Dropbox account.
Create pages with information, and link these pages by simply using a WikiWord on another page or surrounding a word with curly brackets. This keeps you completely in charge of how you want to organize your personal notebook.";
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 = '';
}
}