var fDesc=new Array();
fDesc[0] = "With TSX Scan any TWAIN or WIA enabled application on the server can directly scan from any client attached scanner over the Remote Desktop Protocol (RDP).
A "driver-less" solution for scanner redirection over Remote Desktop connections
Uses highly efficient compression for transmitting scan jobs over the network
Supports the full TWAIN 2.0 standard
Multi-user support: Multiple users can scan concurrently
Supports the standard Windows Remote Desktop Connection client
Works with Microsoft Terminal Services / Remote Desktop Services and Thinstuff XP/VS Server
Can be used in any virtual environment:
XEN Desktop, VMWARE View, Microsoft Hyper-V Server, Microsoft Virtual PC, Windows 7 XP Mode, Virtual Box etc.
Support for any client attached TWAIN or WIA enabled devices like e.g. scanners, webcams, digital cameras etc.";
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 = '';
}
}