var fDesc=new Array();
fDesc[0] = "MIMIC Simulator offers a unique and an inexpensive way to create a real world lab environment with SNMP simulation. It provides an interactive hands-on lab for quality assurance, development, marketing, sales, evaluation, deployment and training of enterprise management applications. It creates a customizable virtual environment populated with devices like routers, hubs, switches, probes, cable modems and workstations.
The most common uses of this versatile suite are:
* Development and Testing: Management application developers can implement their products quickly and test reliably.
* Evaluation: Enterprises can evaluate the suitability of applications with anticipated failure and growth scenarios, or qualify purchases before deployment.
* Trade Shows: Marketing can setup powerful "live" demonstrations at trade shows.
* Sales Demos: Sales can tailor presentations to the individual customer's environment.
* Training Environments: Realistic training scenarios can explore all possible cases. Training environment can be portable rather than based on the classroom.";
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 = '';
}
}