var fDesc=new Array();
fDesc[0] = "EyeScape Advanced Imaging offers a cutting edge soultion to patient data management, EMR and Telemedicine interfaces and advanced diagnostic tools.
Features:
- Easy to navigate user interface
- Single click to all modes and applications
- Enhancement Mode with advanced tools
- Mosaic View with blending
- Overlay and side-by-side comparison
- StereoView recalls linked stereo pairs
- Proof sheet with easy preview and print tools
- Email and export options
- Telemedicine and EMR ready
- Dark recovery
- C/D measuring tool and ratio storage
- On-image annotations
- Muti View with exclusive seven color view
- Interpretation and report with ICD9 database
- Accomodates worgroups and networks";
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 = '';
}
}