var fDesc=new Array();
fDesc[0] = "WinPATS MX has the ability to upload and download records from the TnT Memory unit.
You must have a TnT that capable of uploading/downloading records to begin with. This is normally defined as a TnT M model. If not then this page doesn't apply to you.
Before attempting to use the download/upload feature, ensure the TnT M is connected to the PC and is
switched on.";
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 = '';
}
}