 function genPw(len)
{
	con = new Array("b","c","d","f","g","h","j","k","l","m","n","p","r","s","t","v","w","x","y","z");
	voc = new Array("a","e","i","o","u");
	var password = '';

	for(i=0; i < len; i++)
	{
		password += con[(Math.ceil(Math.random() * 1000) % 20)] + voc[(Math.ceil(Math.random() * 1000) % 5)];
	}
	return password;
}