var fDesc=new Array();
fDesc[0] = "This program is Windows-based mobile publishing tool that enables users to compose and create Mobile Java applications (Java ME MIDlets) from a wide range of file formats (text and images) and/or from Internet links without any programming. AdaptAir can be used either as a professional authoring tool for mobile content publishers or as utility for kind of business and professionals who might need a simple, fast, and inexpensive way to export some information to mobile phones or to have some information accessible from mobile phones.";
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 = '';
}
}