var fDesc=new Array(); fDesc[0] = "Many email programs save account profiles that you can use to get mail messages without having to re-enter login and password values. If you saved such profile and can successfully receive messages, but forgot the password and need it, then it can be retrieved by Forgotten Mailbox Password.

The program emulates POP3 mail server and captures the password, which then (a) is sent back in the email message to the user and (b) displayed by Forgotten Mailbox Password. The program supports any POP3 mail account and any client email software which can store passwords, such as MS Outlook, MS Outlook Express, Netscape, Eudora, etc.

Note, the program is not compatible with Hotmail, Yahoo and Gmail, and it can not recover the password that is not stored inside the email client software. The program is useful in a situation when user entered and saved the password in the email client, but then forgot it. It may happen when user needs to setup new email program, to move to new PC, to give the password to a co-worker, etc."; 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 = ''; } }