var fDesc=new Array();
fDesc[0] = "With the Kerio Exchange Migration Tool, migrating to Kerio Connect is fast, easy and virtually painless.
Main features:
- Prevent data loss by preserving data on the originating Exchange server.
- Simplify migration with a user-friendly wizard to do the heavy lifting.
- Lower the cost of migration by lowering migration time and manpower requirements.
- Minimize end user interruption with Active Directory mapping option.
- Ensure migration success with detailed reporting and debugging.";
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 = '';
}
}