< n; i++) {
out += s;
}
return out;
}
if (typeof(n) == "undefined") {
return this.toString();
}
else {
n = parseInt(n);
if (n < 1 || n > 21) {
@if (@_jscript_version < 5)
return null;
@else
var e = new Error(-2146823262, "The precision is out of range");
e.name = "RangeError";
e.message = e.description;
throw(e);
@end
}
}
if (this.valueOf() == 0) {
if (n == 1) return "0";
return "0." + repeat("0", n - 1);
}
var s, d, e, len;
s = this.toString().split("e");
d = parseFloat(s[0]);
e = 0;
if (typeof(s[1]) != "undefined") {
e = parseInt(s[1]);
}
s = d.toString().split(".");
if (typeof(s[1]) != "undefined") {
e = e - s[1].length;
d = s[0] + s[1];
d = d.replace(/^0+/g, "");
if (d == "") d = "0";
}
s = d.toString();
len = s.length;
d = parseFloat("." + s) * Math.pow(10, n);
s = Math.round(d).toString();
if (s.length > parseInt(d).toString().length) {
e++;
s = s.slice(0, -1);
}
e += len - s.length;
len = s.length;
e += len - 1;
if (e < n && e > -7) {
if ((e < n - 1) && (e > 0)) {
s = s.substr(0, e + 1) + "." + s.substr(e + 1);
}
else if (e <= 0) {
s = repeat("0", - e) + s;
s = s.substr(0, 1) + "." + s.substr(1);
}
}
else {
if (len < n) {
s += repeat("0", n - len);
}
if (e >= 0) {
e = "+" + e;
}
if (n == 1) {
s += "e" + e;
}
else {
s = s.substr(0, 1) + "." + s.substr(1) + "e" + e;
}
}
return s;
}
var undefined;
function encodeURI(str) {
var l = ['%00', '%01', '%02', '%03', '%04', '%05', '%06',
'%07', '%08', '%09', '%0A', '%0B', '%0C', '%0D',
'%0E', '%0F', '%10', '%11', '%12', '%13', '%14',
'%15', '%16', '%17', '%18', '%19', '%1A', '%1B',
'%1C', '%1D', '%1E', '%1F', '%20', '!', '%22',
'#', '$', '%25', '&', "'", '(', ')', '*', '+', ',',
'-', '.', '/', '0', '1', '2', '3', '4', '5', '6',
'7', '8', '9', ':', ';', '%3C', '=', '%3E', '?',
'@', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I',
'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S',
'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '%5B', '%5C',
'%5D', '%5E', '_', '%60', 'a', 'b', 'c', 'd', 'e',
'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y',
'z', '%7B', '%7C', '%7D', '~', '%7F'];
var out, i, j, len, c, c2;
out = [];
len = str.length;
for (i = 0, j = 0; i < len; i++) {
c = str.charCodeAt(i);
if (c










