var fDesc=new Array();
fDesc[0] = "Happytime Onvif Client is a Network Video Client (NVC) to manage Network Video Transmitters (NVT) devices. Full support ONVIF specification, implements Device discovery, Device management, Media management, Image setting, PTZ management, Recording search, Recording replay and Event management services. Written in C, Cross-platform support library, can be easily ported to embedded systems. Can be used to develop video surveillance system and Network Video Recording (NVR) devices. Happytime Onvif Client supports the video standards H.264, MJPEG and MPEG-4 and audio standards G.711, G.726 and AAC.
Full support ONVIF specification
Cross-platform support library
Support 64 channels playing synchronously
Support H.264/MJPEG/MPEG-4 video decoding
Support any video window layout";
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 = '';
}
}