var fDesc=new Array();
fDesc[0] = "The application provides pen and stylus devices an interface for text input, email launching and many more features.
Main Features:
- Easily enter text, numbers and symbols into documents and applications.
- A varied selection of ready-to-use keyboard styles adapted to the ergonomics of many different scenarios: - checking emails while walking between two meetings
-Using together books, paper and a computer tablet.
-Doing a construction yard survey.
-Organize and navigate conveniently windows in the Desktop.
-Customize you keyboard to launch frequently used applications.";
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 = '';
}
}