var fDesc=new Array();
fDesc[0] = "With CleverKeys for Windows you can look up words from almost any application, including Microsoft Word, Web browsers and e-mail programs. CleverKeys is easy to use and easy to install.
Features:Highlight a word
Hit control-L to look it up at Dictionary.com
CleverKeys takes you right to the definition in your default Web browser!
Hit control-M to be presented with a menu of other options, such as Thesaurus.com and Reference.com";
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 = '';
}
}