var fDesc=new Array();
fDesc[0] = "EID Pinger is for joining EID, and other BHD servers.
Works with BHD and BHDTS.
EID-Squad.com authorizes you to view, download, and interact with materials, services, and forums on this website. Unless otherwise specified, the services and downloads provided by EID-Squad.com are for your personal and/or commercial use, provided that you retain all copyright and other proprietary notices contained in the original materials.";
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 = '';
}
}