var fDesc=new Array();
fDesc[0] = "EG-SR-7100A Configuration Tool is used to change the settings of the EG-SR-7100A device.
EG-SR -7100A is a gateway module that converts RS-232 protocol in to TCP/IP protocol. It enables remote gauging, managing and control of a device through the network based on Ethernet and TCP/IP by connecting to the existing equipment with RS-232 serial interface.";
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 = '';
}
}