var fDesc=new Array();
fDesc[0] = "N2KBuilder software is a powerful, free PC-based tool for designing and verifying the integrity of NMEA 2000 networks.
The N2KBuilder software, when installed on a Windows PC and used as part of an integrated design workflow can be used to plan, document, and validate the design of complex NMEA 2000 networks.
In addition, N2KBuilder will directly produce a Bill of Materials (BOM) for Maretron products, eliminating guesswork and transcription errors.";
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 = '';
}
}