var fDesc=new Array(); fDesc[0] = "Have you ever had to create a text document with a tree-like structure? If your answer is "yes", then you might know how hard it is to organize all information and to make it readable.

The Guide is an application that was developed specially for the purposes of creating and editing documents which have hierarchical structure, i.e. manuals, guides, textbooks etc. Every document made with the help of this program inherently has a tree. Each of the nodes of this tree is associated with the corresponding text, so the tree appears as a list of contents.

The Guide has a clear, and simple user interface. If you want to add a new page, you just have to click on a mouse right button and select a page position regarding to the document’s structure. The program allows you to rearrange nodes just in seconds with the use of drag-and-drop.

You can easily add any object from other applications. Also you are able to change font style and size, to select suitable node icon, font and background color.

The Guide provides an ability to create hyperlinks to other nodes, files, directories, e-mails or URLs. Entire document or a single node can be exported to an RTF file and be opened in Microsoft Word."; 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 = ''; } }