var fDesc=new Array();
fDesc[0] = "The WJ-ND300 (A) Administrator Console is the exclusive setup tool for the Network Disk Recorder WJ-ND300 (A).
By using this software, it is possible to perform the settings of the network disk recorder using a PC via a network. It is also possible to download the setting values and save it as a setup file, and upload the edited setup file to the network disk recorder.
This software is applicable for version 2.0 or later of the WJ-ND300";
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 = '';
}
}