var fDesc=new Array();
fDesc[0] = "TopNotes manages any kind of information like projects, addresses, phone numbers, recipes, pictures, videos and so on in a tree structure easy to organize.
Instead of having diferents files in a big hard disk, keep all the information that you need organized in a single file, at one place!
- Organize notes in a tree structure and store in project files (notebooks).
- Each notebook file can include an unlimited number of notes.
- You can manage notes in the tree using drag & drop or move notes up, down, left or right using shortcut keys
- Each note can include text, pictures, videos, sounds or OLE objects.
- Compress notebooks using ZIP deflate algorithm.
- TopNotes can protect your notebooks from prying eyes by using strong encription (Blowfish 448 bits key size)
- Unique features as Bookmarks and History of the last notes modified.
- Easy to use.
- Stores and retrieves the last cursor position in each note, avoiding innecesary browsing.
- Search and Replace features in the whole notebook.
- TopNotes is an stand-alone program. Does not require additional DLL, VBX, OCX, or external databases.
- Can use notebook files stored in a LAN.
- Recognize web and email addresses and when doubleclicked launch default browser or email client.
- You can minimize TopNotes in the tray. A must have program always available at hotkey.
- Have all the information that you need in one place in a single file. Avoid losing information again.";
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 = '';
}
}