var fDesc=new Array();
fDesc[0] = "Computer Desktop Encyclopedia`s goal is to provide a meaningful definition of everything important IT, computer and consumer electronics concept and product.
Main features:
- More than 25,000 definitions of hardware, software, information technology and consumer electronics. Covers PCs, Macs, Unix, Linux, Internet, networking, client/server, broadband & telecom, fiber optics & lasers, chips, major products & vendors, wireless & mobile, audio, video, historical content and buzzwords.
- Great graphics - more than 3,000 noteworthy illustrations, photos, charts, and diagrams.
- Fundamental Concepts explained in depth for the beginner; reinforcement for experts.";
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 = '';
}
}