var fDesc=new Array();
fDesc[0] = "XO Smart Link is the worlds most advanced user-interface for dental units and is available exclusively as an option for the XO 4-6 dental workstation. XO Smart Link is a software solution running on a PC connected to the unit.
The software greatly expands the functionality of the unit by providing the means for applying optimal dynamic instrument parameters using the concepts of "Instrument programs" and a complete hands-free solution for interacting with other software running on the same PC. XO Smart Link is an open-ended system allowing it to be continuously upgraded with new features, in the form of plug-ins, and allows for complete customization of all aspects.
In practice, XO Smart Link will ...
- make patient treatment easier
- enable you to better concentrate on your patient
- help you work faster and with greater precision
- ensure that you work ergonomically correct
- help reduce the risk of cross-contamination
- Easy setup and configuration using 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 = '';
}
}