var fDesc=new Array();
fDesc[0] = "JN-SW-4051 JenNet-IP SDK is a program that provides support for JenNet-IP and the Border-Router for the NXP JN5148-J01 and JN5142-J01 devices. JN-SW-4051 is installed on top of JN-SW-4041 (SDK Toolchain). It includes the following components:
- JenNet-IP
- 6LoWPAN
- Chip and board support for JN5148-J01 and JN5142-J01
- Border-Router configuration tool
- JenNet-IP Browser tool
- Recalibration library";
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 = '';
}
}