var fDesc=new Array();
fDesc[0] = "The 1-Wire Automation Software combines all the 1-Wire functionality you need in one server program. The Server supports a broad range of 1-Wire masters and 1-Wire slaves available in the market. The Server is accompanied by three power tools: the Server GUI, the Server Logger, and the Control Panel.
The 1-Wire Automation Software runs on PCs and single board computers for Linux and Windows operating systems alike.";
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 = '';
}
}