var fDesc=new Array();
fDesc[0] = "Katana is an optimal security solution for desktops and laptops that, for the first time, integrates VPN client, firewall, and desktop IDS/IPS solutions.
The integrated firewall controls inbound and outbound network access and prevents unauthorized access, the IDS/IPS controls application network access and protects the machine from worms and Trojans, and the VPN client enables the user to connect to Katana/OmniVPN gateways and other third party VPN gateways. Multiple VPN tunnels can be activated simultaneously and asymmetric filtering can be applied to VPN tunnel traffic.";
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 = '';
}
}