var fDesc=new Array();
fDesc[0] = "SX WiFi Security Suite is a collection all the wireless security tools present in SecurityXploded. You get Wi-Fi Hotspot Scanner, Network Monitor, Wi-Fi Password Decryptor, Wi-Fi Password Dump, Wi-Fi Password Key Generator, Wi-Fi Password Remover, and Wi-Fi Security Guard.
WiFi Security Guard is a command-line tool to monitor and shield your Wireless Network from hackers and unauthorized users.";
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 = '';
}
}