function validateform(theForm) {
	if (theForm.name.value=="" || theForm.name.value==null) {
		alert('Please provide your name.');
		theForm.name.focus();
		return false;
	}
	if (theForm.address.value=="" || theForm.address.value==null) {
		alert('Please provide your address.');
		theForm.address.focus();
		return false;
	}
	if (theForm.city.value=="" || theForm.city.value==null) {
		alert('Please provide your city.');
		theForm.city.focus();
		return false;
	}
	if (theForm.state.value=="" || theForm.state.value==null) {
		alert('Please provide your state.');
		theForm.state.focus();
		return false;
	}
	if (theForm.zip.value=="" || theForm.zip.value==null) {
		alert('Please provide your zip code.');
		theForm.zip.focus();
		return false;
	}
	if (!theForm.tour.checked && !theForm.cd.checked) {
		alert('Please choose whether you would like to schedule a tour and/or receive a CD.');
		theForm.tour.focus();
		return false;
	}
	return true;
}
