var fDesc=new Array();
fDesc[0] = "XBeeCrtl is a powerful and simple ActiveX control (OCX) that allows Visual Basic, Delphi, Excel and other OLE Container applications to quickly and easily access XBee® devices. XBeeCrtl supports Non Escaped Character (API = 1) and Escaped Character (API = 2) connections.
Some key features of the program are:
1)Event occurs when you receive a message.
2)These events can be disabled and you can choose another programming methodology.
3)Your program does not stop while waiting for XBee® transactions to finish.
4)You can communicate with multiple ports simultaneously.
5)The events are executed properly even while multiple messages are sent at the same time.
6)Compatible with XBee® serie 1 y serie 2.
7)Compatible with API 1(Non Escaped Character) and API 2 (Escaped Character).";
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 = '';
}
}