var fDesc=new Array();
fDesc[0] = "Aksharamala is a standards based input method for Windows users. The product is mainly designed for Indian languages for direct input of text into popular desktop and web applications.
Some examples are: Microsoft Office (including word, outlook), OpenOffice, various webmail products such as Gmail, various messenger products such as Google Talk, AIM and Yahoo! Messenger.
Give Aksharamala a try to see how it can help you!";
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 = '';
}
}