var fDesc=new Array();
fDesc[0] = "Powerful, flexible, free port scanner for analyzing network security or Internet exploration. Stealth SYN scan, Ping sweep, FTP bounce, UDP scan, TCP/IP fingerprinting remote OS identification.
Features:
- Allows you to easily access the main Nmap features and information;
- Lets you create and manage any number of configurations you need;
- Supports all its command line options.";
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 = '';
}
}