()
| 16 | }; |
| 17 | } |
| 18 | function makeid() { |
| 19 | var text = ""; |
| 20 | var possible = "ABCDFGHIJKMNOPQRSTUVWXYZLEefulabcdghijkmnopqrstvwxyz0123456789"; |
| 21 | for (var i = 0; i < 8; i++) |
| 22 | text += possible.charAt(Math.floor(Math.random() * possible.length)); |
| 23 | return text; |
| 24 | } |
| 25 | function zeroFill(number, width) { |
| 26 | width -= number.toString().length; |
| 27 | if (width > 0) |