var fDesc=new Array();
fDesc[0] = "Support for the Vista IV display node.
Support for Microsoft Windows Vista and Windows 7.
Changed the default path for node OS files.
- The original path was the Application directory, “Program Files\V-MUX Software\V-MUX Downloader”.
- The new path is “My Documents\V-MUX”.
- This is done in keeping with Microsoft’s recommendation that no user updateable files are stored in the Application path directories.
- AppData path used for other files that may be modified by the application itself.
- This is done in keeping with Microsoft’s recommendation that no program updateable files are stored in the Application path directories.
- USB Transceiver drivers automatically installed with V-MUX Downloader.";
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 = '';
}
}