var fDesc=new Array();
fDesc[0] = "SICAT Implant is a radiological 3D software for dental diagnostics and implant planning. Compatible with all modern Conebeam and CT Systems it features a direct DICOM import function without the need for image clean-up or conversion.
The intuitive user interface of SICAT Implant uses a so-called slicing window which is used to move through the 3D volume. Nerve canal and other important anatomical landmarks can easily be marked and measured directly within the software.";
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 = '';
}
}