var fDesc=new Array();
fDesc[0] = "Enterprise Console makes managing your Sophos security easy. You'll know what's happening on your network and you'll have control over it.
Main features:
-One management console has all your tools and takes care of Windows, Mac, Linux and UNIX.
-help you fix problems fast and clean up remote computers.
- Get instant reports and schedule them to send automatically.
- You'll get automatic alerts, and you can create and apply policies.
- role-based administration lets you offload some daily tasks.
- Synch up with Active Directory and get rid of your old security products.
- Get a look at guest computers before you let them onto your network.
- research teams at SophosLabs fine-tune protection and send you the newest threat updates.";
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 = '';
}
}