﻿function showOther() {
	telem = document.getElementById("show_other");
	telem.style.display = "block";
}
function hideOther() {
	telem = document.getElementById("show_other");
	telem.style.display = "none";
}

function checkOther(){
  if(document.form1.Amount[6].checked && document.form1.amt_other.value == "") {
    alert("Please enter a donation amount");
    document.form1.amt_other.focus();
    return false;
    }else{
    return true;
  }
 }