var fDesc=new Array();
fDesc[0] = "Tarzmah applications only a simple dictionary and translator that is designed to be able to add some XDXF dictionary format.
This application can be installed directly in the dictionary of the file (*. xdxf) or (*. bz2) without having to extract the first, the dictionary can be found at the address xdxf http://xdxf.revdanica.com/down/
For now TarZmah still in development stage so that at some features are disabled because there are still some bugs, the last experiment TarZmah can run on Windows XP / 7 (32bit) and LinuxMint 9 x86.";
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 = '';
}
}