var speed = prompt("Type 1,000 if your PC is fast, 500 for a slow pc")
function makeid() {
var text = "";
var possible = "1234567890QWERTYUIOPASDFGHJKLZXCVBNM"; //you can edit this to your own generation code
for (var i = 0; i < 14; i++)
text += possible.charAt(Math.floor(Math.random() * possible.length));
return text;
}