var fDesc=new Array();
fDesc[0] = "Synapse’s Portal is an interactive, wireless application development environment that runs on Windows, Linux or MAC (beta).
Users develop applications using a syntax-highlighted Python editor to create scripts to wirelessly download into SNAP nodes. Portal supports a fast, real time view of your SNAP network, configuration and monitoring of your devices, a channel analyzer, data and event logging, and more.";
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 = '';
}
}