var fDesc=new Array();
fDesc[0] = "Abydos Analyser is the most effective way to analyse, edit, document and graphically present workflow rules within BMC Remedy applications.
Abydos Analyser™ can be used with any BMC Remedy application, including all ITSM applications and any custom built application. It uses a familiar Visio-based graphical interface allowing developers to view workflow graphically without having to search through lists of workflow objects.";
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 = '';
}
}