// JavaScript Document
function validateForm() {
	if (!document.signup.agreement.checked) {
		alert("Please agree to Affiliate Terms");
		return false;
	}
	else {
		return true;
	}
}

function checkCountry() {
	if (document.signup.country.value != 'US') {
		document.signup.state.options[0].selected = true;
	}
}

function checkState() {
	if (document.signup.state.value != '') {
		document.signup.country.value = 'US';
	}
}