diff --git a/interface/web/js/scrigo.js.php b/interface/web/js/scrigo.js.php
index a30a9ec0443d39e0faebd36c1760502c4306c65e..d5af589c2385ce57f2bf1efd39df694cca47c4b2 100644
--- a/interface/web/js/scrigo.js.php
+++ b/interface/web/js/scrigo.js.php
@@ -153,9 +153,9 @@ function password(minLength, special, num_special){
 	var maxLength = minLength + 5;
 	var length = getRandomInt(minLength, maxLength);
 	
-	var alphachars = "abcdefghijklmnopqrstuvwxyz";
-	var upperchars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
-    var numchars = "1234567890";
+	var alphachars = "abcdefghijkmnopqrstuvwxyz";
+	var upperchars = "ABCDEFGHJKLMNPQRSTUVWXYZ";
+    var numchars = "23456789";
     var specialchars = "!@#_";
 	
 	if(num_special == undefined) num_special = 0;