var fDesc=new Array();
fDesc[0] = "Tolon NoteKeeper is a multi-functional hierarchical information manager for Windows. Store notes and images in virtual folders in one file!
Many notes and images can be stored in a single NoteKeeper file and can be grouped into flexible virtual folders enabling easy, intuitive access at all times.
* Store and organize a variety of different information easily and intuitively, in a single NoteKeeper file.
* Convenient keyboard shortcuts for all editing and file management commands.
* Standard word processing features including, hyperlinks, print & print preview, find & replace, text highlighting.
* Automatic compression of data within a NoteKeeper file means its easier to share a file between friends and collegues.
* Automatic installer and uninstaller. * Integrated help system.
* Import images and documents from a wide variety of formats.
* 128-bit Strong Encryption (in the Professional Version) will keep your data safe from prying eyes.
* Keyword Association.
* Search for text across all nodes.
* Multi-lingual spell checking.
* Task list.";
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 = '';
}
}