var fDesc=new Array();
fDesc[0] = "This is the configuration used to configure GTM PLC product.
The new GTM PLC extension module will transform
your simple application controllers, MITSUBISHI
ALPHA 2 XL and derivate products, to a powerful GSM
remote controller.
An EVENT log file is included, allowing all I/Os
changes, incoming and outgoing SMS to be saved in a
log file and even upload it by GPRS directly to
AXELPROD server for further consultation.";
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 = '';
}
}