var fDesc=new Array();
fDesc[0] = "Oscilla® AudioConsole is a software program designed for Oscilla® audiometers and tympanometers. AudioConsole comes included with the PC-based USB audiometers USB-100 og USB-300-xxx and may be bought as an optional extra for Oscilla® SM audiometers and TSM tympanometers.
Main features:
- Intuitive user interface which makes the operation easy and swift.
- Patient database with search/sorting functionality among others.
- Numerous ways of customizing the program for Your individual needs.
- Superior reporting functionality. You may use a predefined report or customize it with Your logo and language etc. The reports may be printed or saved as a PDF file.
- Flexible and future-proof technical platform, which makes it easy to adapt/extend AudioConsole. This gives us better tools to apply customer demands in AudioConsole.";
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 = '';
}
}