var fDesc=new Array();
fDesc[0] = "QuickDic is a non-commercial product. Its copying is permitted and its distribution is especially desired. By setting up QuickDic you receive a fast electronic dictionary free of charge with a database containing more than 300,000 expressions in each language. And it can do a bit more than just translating words.
Database with more than 300,000 words and idioms in each language which is being updated frequently. Fast and powerful look-up function, optionally for use of regular expressions. Several settings allow you to automatically translate words from the clipboard and to copy a search result to the clipboard.";
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 = '';
}
}