var fDesc=new Array();
fDesc[0] = "beKEY is a complete replacement for an ordinary keyboard, for all persons who don't use or are not able to use a standard keyboard.
Main features:
- intelligent word prediction, already trained using more than 1000 letters, emails and speeches ... and it keeps learning as you type
- Word prediction dictionaries in 23 languages available
- many options to configure according to your needs: total size, size of key caps, distance between key caps, font size etc. can be easily adjusted
- optimized to be used with one click only (no double clicks, no drag and drop)
- supports click mode and dwell ("hover") mode
- "Skin" mode for customized looks with graphics (all versions)
- Transparent display
- Special keys for frequently used tasks (deluxe versions only)
- Scanning modes for 1 or 2 switches (deluxe SCAN version only).";
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 = '';
}
}