var fDesc=new Array();
fDesc[0] = "System Architect's powerful modeling capabilities enable you to represent processes, systems and information graphically, making it easier to understand abstract or hard-to-visualize concepts.
System Architect's business modeling enables you to define and represent your enterprise - from high-level business objectives and organizational structures, through event-driven business process and function modeling, to detailed application and database design - via a suite of interrelated models, information matrices, and detailed work products such as reports (presented in both Microsoft Word and HTML), activity-based costing metrics, and simulation. System Architect's Business Modeling is supported with BPMN, IDEF and Process Charts.
Main Features:
- Understand the need and align it with the goals of the enterprise
- Communicate and demonstrate the need to others
- Build a solution
- Assess the impact of change
- Prove the solution satisfies the need
- Maintain and improve the solution to take account of future requirements";
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 = '';
}
}