var fDesc=new Array(); fDesc[0] = "Many tasks that can be performed on PC's these days require you to close all currently running programs. For example, almost every installer asks you to close all other applications to minimize conflicts and to avoid replacing in-use files. Other high-end tasks, such as burning CDs and defragmenting or scanning hard drives can slow down or even fail when other processes 'kick in', like background programs, the screen saver or a scheduled task."; 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 = ''; } }