
// JavaScript Document


// Fix Google Toolbar Autofill


  if(window.attachEvent)
    window.attachEvent("onload",setListeners);

  function setListeners(){
    inputList = document.getElementsByTagName("INPUT");
    for(i=0;i<inputList.length;i++){
      inputList[i].attachEvent("onpropertychange",restoreStyles);
      inputList[i].style.backgroundColor = "";
    }
    selectList = document.getElementsByTagName("SELECT");
    for(i=0;i<selectList.length;i++){
      selectList[i].attachEvent("onpropertychange",restoreStyles);
      selectList[i].style.backgroundColor = "";
    }
  }

  function restoreStyles(){
    if(event.srcElement.style.backgroundColor != "")
      event.srcElement.style.backgroundColor = "";
  }


///
function validEmail(Email) {
		invalidChars = " /:,;"
		
		for (i=0; i<invalidChars.length; i++) {
			badChar = invalidChars.charAt(i)
			if (Email.indexOf(badChar,0) > -1) {
				return false
			}
		}
		atPos = Email.indexOf("@",1)
		if (atPos == -1) {
			return false
		}
		if (Email.indexOf("@",atPos+1) != -1) {
			return false
		}
		periodPos = Email.indexOf(".",atPos)
		if (periodPos == -1) {
			return false
		}
		if (periodPos+3 > Email.length) {
			return false
		}
		return true
	}
	
function numberCode(inNumber) {
	if (inNumber == "") {
		return false
	}
	for (i=0; i<inNumber.length; i++) {
		if (inNumber.charAt(i) < "0") {
			return false
		}
		if (inNumber.charAt(i) > "9") {
			return false
		}
	}
	return true
}
	
	

	
function submitIt(passForm) {

	if (passForm.firstName.value == "") {
		alert("Please enter your First Name")
		passForm.firstName.focus()
		return false
	}

	if (passForm.lastName.value == "") {
		alert("Please enter your Last Name")
		passForm.lastName.focus()
		return false
	}

	if (passForm.phoneCode.value != "") {
		if (!validTelAreaCode(passForm.phoneCode.value)) {
			alert("Please enter a valid Telephone Area Code")
			passForm.phoneCode.focus()
			passForm.phoneCode.select()
			return false
		}
	}
	
	if (passForm.phoneNum.value != "") {	
		if (!validTelNumber(passForm.phoneNum.value)) {
			alert("Please enter a valid Telephone Number")
			passForm.phoneNum.focus()
			passForm.phoneNum.select()
			return false
		}
	}
	if (passForm.cellCode.value != "") {
		if (!validTelAreaCode(passForm.cellCode.value)) {
			alert("Please enter a valid Cell Phone Area Code")
			passForm.cellCode.focus()
			passForm.cellCode.select()
			return false
		}
	}
	
	if (passForm.cellNum.value != "") {
		if (!validTelNumber(passForm.cellNum.value)) {
			alert("Please enter a valid Cell Number")
			passForm.cellNum.focus()
			passForm.cellNum.select()
			return false
		}
	}
	
	if (passForm.faxCode.value != "") {
		if (!validTelAreaCode(passForm.faxCode.value)) {
			alert("Please enter a valid Fax Area Code")
			passForm.faxCode.focus()
			passForm.faxCode.select()
			return false
		}
	}
	
	if (passForm.faxNum.value != "") {
		if (!validTelNumber(passForm.faxNum.value)) {
			alert("Please enter a valid Fax Number")
			passForm.faxNum.focus()
			passForm.faxNum.select()
			return false
		}
	}
	
	if (passForm.email.value == "") {
		alert("Please enter your Email Address")
		passForm.email.focus()
		return false
	}

	if (passForm.email.value != "") {
		if (!validEmail(passForm.email.value)) {
			alert("Invalid Email Address - Please enter a valid Email Address")
			passForm.email.focus()
			passForm.email.select()
			return false
		}	
	}
	if (passForm.zip.value != "") {
		if (!validZip(passForm.zip.value)) {
			alert("Please enter a valid Zip Code")
			passForm.zip.focus()
			passForm.zip.select()
			return false
		}
	}
		
	
	
	return true
}







