var fDesc=new Array();
fDesc[0] = "Essilor Phi Tracer features :
- Allows you to select the type of tracing as well as the precision required for the job
- Allows you to save the job on your computer
- Allows you to transfer from the tracer the current shape in the memory
- Allows you to select the type of frames you are tracing, setting the edge type required
for the job.";
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 = '';
}
}