var fDesc=new Array(); fDesc[0] = "Allows you to change passwords for local accounts from a remote computer. No need to go to the remote machine to change local Administrator or other account passwords. Change passwords on a single or multiple computers, simultaneously. A must have utility for any Network or Systems Administrator. Requires Administrative Rights to Local PC."; 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 = ''; } }