var fDesc=new Array();
fDesc[0] = "IP Installer provides an easier way for the setting of IP address and network configurations of Pixord's Network Camera and Internet Video Server.
Preparation before IP Assignment:
- Always consult your network administrator before assigning an IP address to your server.
- Make sure the PIXORD NC is powered on and correctly connected to the network.
- Obtain an IP address not yet used from your network administrator.";
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 = '';
}
}