var fDesc=new Array();
fDesc[0] = "WINMED features a wide number of different options, including real-time personalised reconstruction of trans-axial sections, virtual panoramic view and real-time RAY-TRACING 3D rendering of patient's jaw and dental structures.
WINMED and its future evolutions purpose is to provide a valid support to the pre-surgical engineering process used to create dental implants. To achieve this Surgisystems has devoted its development time to develop a powerful program yet very user-friendly.
The interface employs a small number of commands through which user have great control of all input/output data and all this without the need of browsing complicated menu overpopulated of options.";
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 = '';
}
}