function checkpasswdJsExamples() {
origins = new Array('-','-','-','-','-','12monkeys','you and me forever','the only one','the only one','no wonder','I am there for you','extremly odd','not my weight at all')
pswds = new Array('abe','tytytyty','qwjkrtzx','qWjKrTzX','12monkeys','12m1Keys','u&me4Ever','the1lyOne','the1|yOne','noW1Der','iAm>4u','x3MelyOd*2','notMyW8@∞')
for (j=0;j<pswds.length;j++) {
	document.write('<tr><td colspan="2"><\/td><td><div class="level" style="width:'+20*chPwdQUALITYSUM+'px"><\/div><\/td><\/tr>');
	q = chPwdQuality(pswds[j]);
	if (q<chPwdQUALITYSUM) bgc = '#f08888';
	else if (q>chPwdQUALITYSUM) bgc = '#b4df27';
	else bgc = '#f0ea48';
	document.write('<tr><td>'+origins[j]+'<\/td><td><span class="attr">'+pswds[j]+'<\/span><\/td><td><div class="score" style="background-color:'+bgc+';width:'+20*q+'px">&nbsp;'+q+'<\/div><\/td><\/tr>');
	}
	document.write('<tr><td colspan="2"><\/td><td><div class="level" style="width:'+20*chPwdQUALITYSUM+'px"><\/div><\/td><\/tr>');
}
