var fDesc=new Array();
fDesc[0] = "Powercon is a network management software for your network traffic.
Features:
- Unlimited number of managed systems (DVRs, network/megapixel cameras, video servers and 3rd party applications)
- Live and playback view
- Local storage and printout of video data or single pictures on client PC
- Customizable multi-window view with scalable video windows
- Mapview: visualization of CCTV systems in areas or buildings with scalable maps/graphics (BMP or JPEG format)
- Free definable multiviews with up to 16 DVR systems or network cameras, also mixed display of different DVRs (max. 256 cameras in 1 multiview with sixteen 16 ch. DVR*)
- Basic feature support for browser-based 3rd party applications";
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 = '';
}
}