var fDesc=new Array();
fDesc[0] = "GALAXIS is software for dental practices and clinics that enables the preparation of three-dimensional volume reconstructions of the maxillofacial region. Proceed to surgical guide and implant planning with GALILEOS Implant software.
Features:
Evaluate surgical and prosthetic parameters immediately and simultaneously
Measure gingival line and thickness prior to surgical procedures
Optimize implant alignment and assure correct placement to achieve optimum results:
- Reduced incidence of esthetic complications
- Avoidance of angled abutments – Patient-specific abutments
- Reduced incidence of unfavorable loading, which can shorten
implant life";
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 = '';
}
}