var fDesc=new Array();
fDesc[0] = "Web Gate enables you to share data from a target to your remote PC. Each target has a set of shared variables. The Web Gate client can access these variables at run time, as long as the target is set up with Web Gate, is accessible on a network or LAN, the target is set up to share its data, and the logged in security user has read/write access.
Moreover, when a target and remote PC are synchronized, changing the panel display on the
target also changes the panel displayed on the remote PC.";
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 = '';
}
}