var fDesc=new Array(); fDesc[0] = "Powershell help tool allows importing any xml help file and about files from other vendors and puts all this combined information on your desktop or notebook. Powershell doesn’t even need to be installed in order to use this. The built-in help command in the Powershell console is helpful if you need just some quick lookup, but for browsing and reading the console just isn’t good enough."; 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 = ''; } }