var fDesc=new Array();
fDesc[0] = "JRecoverer for Oracle Database Passwords is a user account password auditing and recovery tool for Oracle Database. The key advantage of the application is that its cross-platform (Windows, Mac OS or Linux).
Account information import: import from database (basic connection type with an SID or service name, TNS with a network alias), import from a text file.
Password recovery using dictionary attacks, brute force attacks, hybrid dictionary/brute force attacks, precomputed hashes attacks (using rainbow tables).
Generation of reports about recovered passwords: account list, charts and metrics.";
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 = '';
}
}