var fDesc=new Array();
fDesc[0] = "The MuxXpert is a development kit for creating custom real-time multiplexing applications with DekTec's MuxXpert software multiplexing framework.
- The MuxXpert runtime functions can be used from any .NET language such as C /CLI, C# or VB.NET.
- Location transparency: The real-time multiplexing functions running on one PC can be used from anywhere on the network.
Runs on any PC with Windows-XP / 2k3 / Vista and .NET v2.0";
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 = '';
}
}