var fDesc=new Array();
fDesc[0] = "TSync is a software utility that allows you to Import data into Tally Accounting Software from various sources like MS-Excel, SQL Server, Access, MySQL, DBase, Fox pro, Visual Fox pro etc.
It is a standalone application (exe). No need to have any knowledge of programming languages such as VB, VC, C#, XML etc.
It gives document wise status of the processed data along with detailed error description.";
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 = '';
}
}