var fDesc=new Array(); fDesc[0] = "File management is always a big issue when it comes to using today's operating systems. Most people nowadays use good old Windows Explorer for routine file management. They cut, copy, and paste day in and day out, scrolling from one folder or drive to another the best that they can."; 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 = ''; } }