var fDesc=new Array();
fDesc[0] = "D-ViewCam is the software that accompanies and complements the IP cameras from D-Link. The main console allows you to fully control the application and in no time you'll be able to build a home or small business surveillance system by using D-Link IP cameras and the latest features offered by the D-ViewCam application software.
D-ViewCam NVR Pro brings some updates and new tools to help you view and manage the video recordings.";
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 = '';
}
}