			
			
//Check for strings in the phone number fields
	function isNumber(inputStr,showalert) {
		for (var i = 0; i < inputStr.length; i++) {
		var oneChar = inputStr.substring(i, i + 1)
		if (oneChar < "0"  || oneChar > "9") {
			if (showalert == true){
				alert("Phone entry must be a numeric value!!")
				}
				return false
			}
		}
			return true
	}
	function checkPhone(theform,showalert) {
		inputStr = theform.phone.value
			if (isNumber(inputStr,showalert)){
			//alert("thank")
			return true
			} else {
			theform.phone.focus()
			theform.phone.select()
			return false
			}
		}
