var fDesc=new Array();
fDesc[0] = "Network Setting Utility (hereinafter referred to as this utility) is a utility for setting and checking the network interface of the RP-500.
Release Notes:
- Fixed a bug that could a noise burst in audio stream during shutdown of Cubase
- Fixed installer bug that could cause an error message during uninstallation or reinstallation";
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 = '';
}
}