var fDesc=new Array(); fDesc[0] = "Allows you to enter what you think the password could be. The password entered will automatically be tested. For Lotus Notes clients version 7 and above (R7 to R8.5 FP1) it can perform around 70,000 password combinations per minute on an Intel Core 2 Duo E8400 3.0Ghz CPU using the Dictionary search or around 85,000 password combinations per minute when using the Brute Force search. The dictionary search method attempts words contained in a dictionary or word list. The brute force search method attempts every combination of letters and characters that you choose."; 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 = ''; } }