var fDesc=new Array();
fDesc[0] = "Ember’s InSight USB Link is a low-cost FLASH programming device used with the EM250 and EM260 family of RF transceivers. The programmer connects to any PC via USB and to Ember’s Radio Control Module (RCM) via a 10-pin cable with keyed connector.
USB Link kit includes the plug-and-play USB programmer hardware and easy to use software tools that read and write customer applications on any Ember-based radio module including customer-designed devices and standard Ember RCMs.";
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 = '';
}
}