var fDesc=new Array();
fDesc[0] = "New Small calculations programs - for 12V system
Photovoltaic sizing calculations programs for stand alone systems.
The design of a photovoltaic system means in the first time the calculation of
of solar modules, batteries and inverters.
MATEL-Mini PV is special designed to be used by the owner of small summer houses
and/or cottages.
MATEL-Mini PV is programmed in one version in Danish, English and Romanian
(with the possibility to choose the language).";
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 = '';
}
}