/* Requires lecuyer.js */
/* Requires random_seed.js */

function RandomPassword(pwd_length) {
	ran1 = new LEcuyer(ClockSeed());
	character_pool = "abcdefghijklmnopqrstuvwxyz" + "ABCDEFGHIJKLMNOPQRSTUVWXYZ" + "0123456789";
	password = "";
	for (i = 0; i < pwd_length; i++)
		password += character_pool.charAt(ran1.nextInt(character_pool.length - 1));
	return password;
}
