var fDesc=new Array();
fDesc[0] = "Sain Outliner: A basic, single-pane outliner for Windows.
Main features:
-Edit outlines quickly with keyboard shortcuts.
-Export to HTML or text file.
-Apply custom styles to cells.
-Two line numbering styles.
-Single-pane, no-frills interface keeps you focused on your work.
-Optional checkbox column for creating to-do lists.
-Outlines stored on disk in simple XML file format.";
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 = '';
}
}