


	function checkEmail() {
	email = document.fan.email.value
	AtPos = email.indexOf("@")
	StopPos = email.lastIndexOf(".")
	Message = ""

	if (email == "") {
	
	return false
	}

	if (AtPos == -1 || StopPos == -1) {
	
	return false
	}

	if (StopPos < AtPos) {
	
	return false
	}

	if (StopPos - AtPos == 1) {

	return false
	}
	
	return true
	}
	function checkName() {
	name = document.fan.name.value



	if (name == "") {
	
	return false
	}
	
	return true

	}
	
	function checkZip() {
	zip = document.fan.zip.value



	if (zip == "") {

	return false
	}


	return true
	
	}
	
	function checkform(){
		
		if(checkEmail() && checkName() && checkZip()){
			document.fan.submit.disabled=false
			return true;
		}
		else{	document.fan.submit.disabled=true;
		return false
		}
		
	}
	
	
	function thanks(){
		
		
		
	alert ("Thanks for Supporting Us.")
	}

