var fDesc=new Array();
fDesc[0] = "Vivaldi Software has been developing software for document control and workflow with a focus on quality, environment and safety management since 1995.
Because of the power, user friendliness and flexibility, the software is also perfect for use in a wider scope. 25,000 users in different industries spread across 19 countries use one or more of the following applications on a daily basis: document control, complaint manager, action plans, general tasks, audits, meetings, monitoring of training and skills, post registration, general workflow.
Main features:
- Look up documents via a tree structure, shortcuts or via the powerful search function (even on words in the documents themselves)
- Favorite documents: every user has a personal list of favorite documents.
- Direct links to documents from your intranet, website or from other applications
- Choice between Windows client or Web interface
- Multi-lingual interface: every user works in their own language. Dutch, French and English are supplied as standard. You can edit all the texts yourself, or add new languages.";
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 = '';
}
}