var fDesc=new Array();
fDesc[0] = "BeeHive software consists of two parts.
1. A DLL library of functions to allow the user to write his own programs (eg in visual basic, C, C etc...) very easily without needing to get to know the more difficult complexities of USB communications protocols etc...
2. A multi-tabbed application that has a separate tab for each type of board we manufacture and uses the DLL to provide manual controls for all of the facilities on each board.";
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 = '';
}
}