var fDesc=new Array();
fDesc[0] = "Shakti Office offers a number of applications that have been pinpointed by the Indian user as a must. These applications are enhanced with a number of unique features that make them doubly indispensable.
Main features:
- Language option available across all applications
- Inbuilt bi-lingual dictionary i.e. English to Tamil/Hindi and vice versa as well as an English-English-Tamil/Hindi dictionary and vice versa.
- Transliterator feature - Type in English and get in Indian Language
- Bi-lingual Spell Check
- E-mail in the local language
- Save documents in PDF format.
- All SO documents, presentations, mails, etc. are compatible with Microsoft and other office suites.";
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 = '';
}
}