var fDesc=new Array();
fDesc[0] = "Nutstation is the only software you need for Nutchip programming. It is a simple 3-step process:
- edit the truth table to decide input and output bindings
- choose your remote control type and keys
- program the chip through PC's serial port
It is very simple to use and will help you create programs in minutes instead of hours.";
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 = '';
}
}