Lines Matching refs:ZIP
32 // make up ZIP codes
36 var zip = makeNumber(4);
37 (s%2)?zip=zip+"xyz":zip=zip.concat("7");
39 // validate the zip code
40 for (var i = 0; i < zip.length; i++) {
41 var ch = zip.charAt(i);
44 r = zip + " contains letters.";
48 if (zipGood && zip.length>5)
51 r = zip + " is longer than five characters.";
56 r = zip + " appears to be a valid ZIP code.";