var fDesc=new Array(); fDesc[0] = "The Network Enabler SDK application include some programming utilities for use with NE-4100-P and user developed application. In order to make SDK library easier to use, function calls are divided into categories. The categories are intended to assist programmers in finding the correct function call for their application."; 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 = ''; } }