<!--Original Script from another web site -->
<!--This javascript validates the zip code entered by the web site visitor-->
<!--Begin

function isDigit (c) {
	return ((c >= "0") && (c <= "9")) ;
}
function isInteger (s) {
	var i ;
	var c ;
	for (i = 0; i < s.length; i++) {
		c = s.charAt(i) ;
		if (!isDigit(c)) return false ;
	}
	return true
}
function checkform( thisform ) {
	if (thisform.zipcode.value == null || thisform.zipcode.value == "" ) {
		alert ("You must enter a zip code to continue.") ;
		thisform.zipcode.focus() ;
		thisform.zipcode.select() ;
		return false ;
	}
	if (!isInteger(thisform.zipcode.value)) {
		alert ("You must enter a numeric zip code to continue.") ;
		thisform.zipcode.focus() ;
		thisform.zipcode.select() ;
		return false ;
	}
	if (thisform.zipcode.value.length != 5) {
		alert ("You must enter a 5 digit zip code to continue.") ;
		thisform.zipcode.focus() ;
		thisform.zipcode.select() ;
		return false ;
	}
	return true
}
// -->

