var fDesc=new Array();
fDesc[0] = "BATSniff is a simple IP packet sniffer and traffic monitor.
Features:
-Monitor all incoming and outgoing UDP and/or TCP packets for all ports or single port
-Store to file all IP packets based on packet type for all ports or single port
-View stored raw packet data in hexadecimal format
3D high definition icons
-Automatic Remote IP address country code/flag lookup
-High performance with minimal system footprint";
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 = '';
}
}