function resetBox(e,o){
if (o.firstTime){return};
o.firstTime = true;
o.value = "";
o.style.fontStyle = "";
}

function verify(){
	var text = "Required field is not complete.  Please try again";
	
	if (document.forms["payment"].donation.value == "Required" || document.forms["payment"].donation.value == ""){
		alert ("Please enter a dollar amount for your donation");
		document.forms["payment"].fName.focus();
		return false;
		}
	
	if (document.forms["payment"].fName.value == "Required" || document.forms["payment"].fName.value == ""){
		alert (text);
		document.forms["payment"].fName.focus();
		return false;
		}
		
	if (document.forms["payment"].lName.value == "Required" || document.forms["payment"].lName.value == ""){
		alert (text);
		document.forms["payment"].lName.focus();
		return false;
		}

	if (document.forms["payment"].address1.value == "Required" ||document.forms["payment"].address1.value == ""){
		alert (text);
		document.forms["payment"].address1.focus();
		return false;
		}
		
	if (document.forms["payment"].city.value == "Required" || document.forms["payment"].city.value == "Select State"){
		alert (text);
		document.forms["payment"].city.focus();
		return false;
		}
		
	if (document.forms["payment"].state.value == "Required" || document.forms["payment"].state.value == ""){
		alert (text);
		document.forms["payment"].state.focus();
		return false;
		}
		
	if (document.forms["payment"].zip.value == "Required" || document.forms["payment"].zip.value == ""){
		alert (text);
		document.forms["payment"].zip.focus();
		return false;
		}
		
	if (document.forms["payment"].phone.value == "Required" || document.forms["payment"].phone.value == ""){
		alert (text);
		document.forms["payment"].phone.focus();
		return false;
		}

	if (document.forms["payment"].email.value == "Required" || document.forms["payment"].email.value == ""){
		alert (text);
		document.forms["payment"].email.focus();
		return false;
		}
		
	if (document.forms["payment"].cardnumber.value == "Required" || document.forms["payment"].cardnumber.value == ""){
		alert (text);
		document.forms["payment"].cardnumber.focus();
		return false;
		}
		
	if (document.forms["payment"].cardexpmonth.value == "Required" || document.forms["payment"].cardexpmonth.value == ""){
		alert (text);
		document.forms["payment"].cardexpmonth.focus();
		return false;
		}
		
	if (document.forms["payment"].cardexpyear.value == "Required" || document.forms["payment"].cardexpyear.value == ""){
		alert (text);
		document.forms["payment"].cardexpyear.focus();
		return false;
		}
		
	if (document.forms["payment"].cvmvalue.value == "Required" || document.forms["payment"].cvmvalue.value == ""){
		alert (text);
		document.forms["payment"].cvmvalue.focus();
		return false;
	}

		
text = "The following will be process against the credit card information provided.  If you subscribed for our battery service, it will be billed sepratly on your charge card.  ou will be billed on the first of each month for service.  Deliver is scheduled for the 15th of each month.  Clicking OK below verifies your acceptance of our policies.\n\n  Please Verify the Information you Entered: \n\n Name: " + document.forms["payment"].fName.value + " " +document.forms["payment"].lName.value + "\n Address:" + document.forms["payment"].address1.value + "\n Address (Continued):" + document.forms["payment"].address2.value + "\n City:" + document.forms["payment"].city.value + "\n State:" + document.forms["payment"].state.value + "\n Zip Code:" + document.forms["payment"].zip.value + "\n Telephone:" + document.forms["payment"].phone.value + "\n EMail Address:" + document.forms["payment"].email.value + "\n Total Payment:" + document.forms["payment"].donation.value + "\n\n Card Number:" + document.forms["payment"].cardnumber.value + "\n Expiration Date:" + document.forms["payment"].cardexpmonth.value + "-" + document.forms["payment"].cardexpyear.value + "\n Card Security Code:" + document.forms["payment"].cvmvalue.value + "\n";
    
	var verifySubmit = confirm(text);
	if (!verifySubmit)
	return false;
}
