var fDesc=new Array();
fDesc[0] = "Reolink desktop Client (Windows & Mac) is intuitive and easy to navigate and interact with a clear layout. Constantly updating and optimizing Client to accommodate different needs and improve users’ experience. Reolink Client allows users to view multiple cameras’ live feeds anywhere anytime and playback pre-recorded footage (saved in SD card & NVR) remotely.
Support multi-screen live streaming (up to 36 screens). There is a slew of customizable functions, including flexible recording, motion detection (set zone & schedule), motion trigger & alert, PTZ, FTP setup, flexible compression and many other customizable 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 = '';
}
}