var fDesc=new Array();
fDesc[0] = "Aard Dictionary is a free, fast, easy to use word lookup program that
-looks up words fast even with huge dictionaries like English Wikipedia
-looks up words in multiple dictionaries in multiple languages without switching
-works great as offline Wikipedia reader
-is keyboard navigation friendly
-has efficient, highly compressed dictionary data storage format with ability to verify data integrity built-in";
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 = '';
}
}