var fDesc=new Array();
fDesc[0] = "Business Process Management (BPM) system is a business application development environment that requires no programming knowledge.
-Drag & Drop Designing "Business Process Chart"
- Defining 'Data Items' for Business Process
- Configure 'Allocation Rule' in Each Task
Questetra BPM Suite, as well as functions of the conventional workflow products, various tools are equipped to improve workflow (business processes). Especially, aggregation graphs of process data and discussions about improvement on in-house micro-blogging would guide a business process it should be.";
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 = '';
}
}