function ResetPassword() {
	var password = ""
	var alphaChar = "a";
	var alphaCode = alphaChar.charCodeAt(0);
	var numeriChar = "0";
	var numeriCode = numeriChar.charCodeAt(0);
	
	for (var x = 1; x <= 8; x++) {
		var whichSet = Math.floor(Math.random()* 2);
		if (whichSet == 0) {
			var whichChar = Math.floor(Math.random()* 10);
			character = String.fromCharCode(numeriCode + whichChar);
		} else {
			var upperLower = Math.floor(Math.random()* 2);
			var whichChar = Math.floor(Math.random()* 26);
			var character = String.fromCharCode(alphaCode + whichChar);
			if (upperLower == 0) character = character.toUpperCase();
		}
		password += character;
	}
	return password;
}