var fDesc=new Array();
fDesc[0] = "ABACUS is quite simply the most flexible, cost-effective, feature-rich and easy-to-use I.T. strategy, planning and enterprise modelling tool on the market today. What can take months with other tools can be done in minutes with ABACUS.
ABACUS is a powerful tool for modeling, understanding, and analyzing complex enterprises across people, process and technology. Using world leading, patented technology, ABACUS® analyzes the trade-offs between multiple architectures and helps enterprises achieve the optimal roadmap prior to investment.
ABACUS is a flexible modelling tool that predicts the benefits, effectiveness and cost of alternative strategies. This is achieved through:
-Analysing an enterprise using metrics such as total cost of ownership, performance and reliability, and performing sophisticated trade-off analysis for guided decision making;
-Uniting various levels of a complex enterprise into an integrated, hierarchical, single point of truth; and
-The communication of an enterprise model and analysis using graphs, two dimensional pictures and advanced three dimensional visualisations.";
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 = '';
}
}