var fDesc=new Array();
fDesc[0] = "For your batch, serial communications, MCL-Link is the communications server that meets your needs. With support for direct connect or remote dial-up, MCL-Link handles the data communications for multiple users, sequentially, one user at a time.
Whether for route accounting, direct store delivery, physical inventory, retail returns, competitive price surveys, electronic ordering, dashboard sales product lookup, or field service applications, MCL-Link manages the communications for:
1.Daily downloads, such as:
- Mobile worker task lists
- Lookup tables
- Price lists
- Images
- Label formats
2.Periodic downloads, such as:
- Application updates
- New applications
3.Daily uploads of mobile worker collected data, such as:
- Physical inventory
- Sales orders
- Purchase orders
- Proofs of Delivery";
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 = '';
}
}