var fDesc=new Array();
fDesc[0] = "The VE Power Setup tool can update firmware for Victron products that are updateable via a VE.Direct or VE.Can communication.
Supported features:
-BlueSolar Chargers 75/10, 75/15, 100/15, 100/30, 150/35, 75/50, 100/50, 150/70 and 150/85.
-BMV-700 series.
-Lynx Shunt VE.Can.
-All four Skylla-i battery chargers.
-All our different VE.Can and NMEA2000 interfaces.
-Ion Control.";
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 = '';
}
}