var fDesc=new Array();
fDesc[0] = "CMDB Analyzer for SDE delivers the only advanced and effective visualization solution for BMC Service Desk Express. For the first time you are able to see a colored visual map of all your important IT assets, the relationships, the business processes, the incidents and configuration changes in a single view.
CMDB Analyzer for SDE also supports out-of-box integration with BMC Alignability for SDE!
main features:
-Ability to duplicate views and create sub-graphs
-CI and relationship dynamic filtering
-Impact Analysis
-Change Calendar View
-Cross launching within SDE and CMDB Analyzer
-Instant access to CI and Service attributes
-Configurable graphics properties
-Configurable CI icon, label and tooltips
-Supporting user defined relationship types
-Snapshot, image export and print preview
-Smart Zoom and Object Magnifier";
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 = '';
}
}