/* Compressed by the perl version of jsmin. */
/* JavaScript::Minifier 0.02 */

function UserWrapper()
{}
function chkZipCode(_el)
{var checkOK="0123456789";var allValid=true;var decPoints=0;var allNum="";if(_el.value.length<5){alertsay="Please enter a 5 digit ZIP code or a ZIP+4 code in the format nnnnn-nnnn.";allValid=false;}
else if(_el.value.length>5&&_el.value.length!=10){alertsay="Please enter a 5 digit ZIP code or a ZIP+4 code in the format nnnnn-nnnn.";allValid=false;}
if(allValid){for(var i=0;i<5;i++){ch=_el.value.charAt(i);for(j=0;j<checkOK.length;j++)
if(ch==checkOK.charAt(j))
break;if(j==checkOK.length){allValid=false;alertsay="ZIP code must be numeric.";break;}}
if(allValid&&_el.value.length>5){if(_el.value.charAt(5)!="-"){allValid=false;alertsay="ZIP+4 must be in the format nnnnn-nnnn.";}
else if(_el.value.substring(6,10)=="0000"){allValid=false;alertsay="0000 is not a valid ZIP+4 extension.";}
else{for(i=6;i<10;i++){ch=_el.value.charAt(i);for(j=0;j<checkOK.length;j++)
if(ch==checkOK.charAt(j))
break;if(j==checkOK.length){allValid=false;alertsay="ZIP+4 must be numeric.";break;}}}}}
if(!allValid)
alert(alertsay);return(allValid);}