var fDesc=new Array(); fDesc[0] = "The Random Password Generator allows you to generate random passwords of various lengths with or without mixed cases and special characters, then copy the password to the clipboard for pasting into other applications.
Random Password Generator is designed to create secure & random passwords that are highly difficult to crack with options to include upper, lower case letters, and punctual symbols."; 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 = ''; } }