// JavaScript Document

<!-- This script is for the "Donate" and "Contact Us" buttons -->
<!--
var z=10; 

function Show(id) {
	document.getElementById(id).style.zIndex = z++;
}

<!-- z-index has to be -1 or contactusclicked will not move -->
function Hide(id) {
	document.getElementById(id).style.zIndex = -1;
}

function HideandMove(id, loc) {
	document.getElementById(id).style.zIndex = -1;
	
	if (loc=="donate") {
	location.href = "donations.html"; }
	else {
	location.href = "contactUs.html"; }
} 
-->