var fDesc=new Array(); fDesc[0] = "There are two types of passwords used in Quicken: a password for opening a data file (also known as 'file password') and a transaction password. The universal recovery methods (Brute Force Attack, Dictionary Search and Smart Force Attack) must be used for that. Unfortunately, even a single password check takes a lot of computations, so the search speed will be very slow (not more than 1000 passwords per second). We will spend 24 hours trying to break a password to your Quicken document."; 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 = ''; } }