var fDesc=new Array(); fDesc[0] = "ViPNet Password Roulette generates a password phrase from which the password is compiled using parameters prior defined by the user. The password phrase, which can be generated in English, German and Russian (further languages planned), has the function of helping to memorize the password. The understanding of a password phrase is a grammatically correct sentence, which consists of words. These words have been randomly chosen by the random generator from special vocabularies. The number of words in a phrase can vary from three (subject, verb, object) to four (attribute, subject, verb, object). Furthermore it is possible to derive more complicated passwords by using two password phrases. The password is generated from the password phrase using the first letters of each word in the password phrase to compile 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 = ''; } }