var fDesc=new Array();
fDesc[0] = "Quickloader is a simple and free-to-use download software.
Main features:
- Download software for Napco Control Panels.
- Retrieve your control panel's remote (WAN) IP address.
- GEM-X255, GEM-P9600 and GEM-P3200 control panels.
- Tech Note details solutions.";
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 = '';
}
}