var fDesc=new Array(); fDesc[0] = "ShowPass Helps users to see a password **** like "pass". Simply drag the button over the password field. It may not work on some programs (e.g. IE 6,OE 6) especially on WinXP where the password field is like this: "....."

ShowPass only works on sites that use the standard HTML tag for password input fields. It makes no attempt to do anything with fancy-pants password fields that use some other method to obscure the password."; 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 = ''; } }