<!--
function showhide() {
    if (document.donation_form.first_donation.checked == true) {
		document.getElementById('first-donation').style.display = 'block';
	}
	else {
		document.getElementById('first-donation').style.display = 'none';
	}
}

/* 2010-02-23 Replaced old function with the one above
function showhide() {
  if (ns4) {}
  else {
    if (document.donation_form.first_donation.checked == true) {
      show('first-donation');
    }
    else {
      hide('first-donation');
    }
  }
}
//hides corresponding div
function hide(divId) {
if (document.layers) document.layers[divId].visibility = 'hide';
else if (document.all) document.all[divId].style.visibility = 'hidden';
else if (document.getElementById) document.getElementById(divId).style.visibility = 'hidden';
if (document.layers) document.layers[divId].overflow = 'hide';
else if (document.all) document.all[divId].style.overflow = 'hidden';
else if (document.getElementById) document.getElementById(divId).style.overflow = 'hidden';
}

//shows corresponding div
function show(divId) {
if (document.layers) document.layers[divId].visibility = 'show';
else if (document.all) document.all[divId].style.visibility = 'visible';
else if (document.getElementById) document.getElementById(divId).style.visibility = 'visible';
if (document.layers) document.layers[divId].overflow = 'show';
else if (document.all) document.all[divId].style.overflow = 'visible';
else if (document.getElementById) document.getElementById(divId).style.overflow = 'visible';
}*/
//-->

