var fDesc=new Array(); fDesc[0] = "The Knowledge Editor enables you to create, customise and modify your own knowledge bases, building your strategic knowledge assets.

The Assistum Knowledge Editor allows you to create and edit knowledge bases. It is a visual editor and most actions are perfomed in a point and click manner.

A "node" is an issue that is relevant to the decision. Clicking on the cirlce on the toolbar adds a node to the knowledge base. Double clicking on a node brings up the node's properties.

A node's properties consists of a name and a question (and some information about the relevance of the issue). There is also a textbox for entering a document path or URL to provide more information to the user answering the question. This will appear when using the Viewer as a "More Info" button. Clicking on it will open the relevant document or application. It could be a webpage, Word document, videoclip or even another Assistum knowledge base that may give some more insights about this factor.

It also contains a set of possible answers to the question which the user selects when the question is asked. A default answer can be set and a slider can be used for answers that are between those entered.

Controls can be added to a node that are displayed with the question and can either be text or true/false. An example would be an Action control which would be true/false and would inicate that action needed to be taken. A report can then be produced indicating which factors/nodes require action to be taken."; 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 = ''; } }