var fDesc=new Array();
fDesc[0] = "PLCOM allows a computer to communicate with the PL series solar power controllers.
PLCOM requires an IBM compatible computer running Win 95, 98 or NT and a mouse. A modem is required for communication over a telephone network.
PLCOM uses icons instead of text wherever possible. A text explanation of each main icon is displayed in the left section of the status bar, and in a bubble when the pointer is left still on an icon. When PLCOM is busy communicating, a timer will count down in the right section of the status bar.";
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 = '';
}
}