|
Lines 28-39
return false;
Link Here
|
| 28 |
return true; |
28 |
return true; |
| 29 |
} |
29 |
} |
| 30 |
///////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
30 |
///////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
| 31 |
function toUC(f) { |
|
|
| 32 |
var x=f.value.toUpperCase(); |
| 33 |
f.value=x; |
| 34 |
return true; |
| 35 |
} |
| 36 |
///////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
| 37 |
function isNum(v,maybenull) { |
31 |
function isNum(v,maybenull) { |
| 38 |
var n = new Number(v.value); |
32 |
var n = new Number(v.value); |
| 39 |
if (isNaN(n)) { |
33 |
if (isNaN(n)) { |