var fDesc=new Array();
fDesc[0] = "Completely revamped field-specific dictionary specializing in IT, with over 35,000 translations. The 5 version has a new look & feel, and refurbished user-friendly capabilities: you can combine it with our Add-Ons Pack (sold separately) to have definitions, color pictures, quips & quotes, proverbs, grammatical notes, usage examples, etc. for the words that have these available.
It Includes:
- Commerce
- Computer Terms
- Internet Terms
- Information Technology
- Television
- Radio
- Telecommunications
- Management
-
- Electrical
- Physics
- Mathematics
- Abridged";
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 = '';
}
}