// JavaScript Document
function randomPassword(length)
				{
					chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
					pass = "";
					for(var forvar=0;x<length;forvar++)
					{
						var index = Math.floor(Math.random() * 62);
						pass += chars.charAt(index);
					}
					return pass;
				}