function validate_one() {

	if(document.contribute.last.value == '') {
		alert("Please fill out all of the appropriate information.");
		return(false);
	}
	if(document.contribute.address.value == '') {
		alert("Please fill out all of the appropriate information.");
		return(false);
	}
	if(document.contribute.city.value == '') {
		alert("Please fill out all of the appropriate information.");
		return(false);
	}
	if(document.contribute.state.value == '') {
		alert("Please fill out all of the appropriate information.");
		return(false);
	}
	if(document.contribute.zip.value == '') {
		alert("Please fill out all of the appropriate information.");
		return(false);
	}
	if(document.contribute.email.value == '') {
		alert("Please fill out all of the appropriate information.");
		return(false);
	}
	if(document.contribute.amount.value == '') {
		alert("Please fill out all of the appropriate information.");
		return(false);
	}
}

function validate_two() {
	if(document.contact.first.value == '') {
		alert("Please fill out all of the appropriate information.");
		return(false);
	}
	if(document.contact.email.value == '') {
		alert("Please fill out all of the appropriate information.");
		return(false);
	}
	if(document.contact.textarea.value == '') {
		alert("Please fill out all of the appropriate information.");
		return(false);
	}
}

function menuGo(t) {
   if(t == "display") {
      var cell_one = document.getElementById('go').offsetTop;
      var cell_two = document.getElementById('go').offsetLeft;
      var cell_height = document.getElementById("go").offsetHeight;
      document.getElementById("drop").style.left = cell_two;
      document.getElementById("drop").style.top = cell_one + cell_height;
      document.getElementById("drop").style.display = '';
   }
   else {
      document.getElementById("drop").style.display = 'none';
   }
 }