var fDesc=new Array();
fDesc[0] = "SmartDVR Formula™ is a program for operating INTOTECH DVR system. It should be installed on all systems using INTOTECH DVR Board, and is required for running other software that INTOTECH provides.
SmartDVR Formula™ provides you with 1 to 9 audio channels (Supported channel widths vary with different boards) and a maximum of 16 video channels. Each channel supports either low resolution for less storage space or high resolution for more storage space. There are also 9 audio channels to be used as needed.
Optimum images for different environments can be realized through the various split-screen display modes and color adjustment functions.";
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 = '';
}
}