﻿function addDest(fName, dest) {
	var input = document.createElement('input');
	input.type = 'hidden';
	input.name = 'recipient';
	input.value = dest + '@' + 'cascadianchorale.org';
	document.forms[fName].appendChild(input);
}

function setCurPage() {
    var menu = document.getElementById("navmenu");
    var links = menu.getElementsByTagName("a");
    var curPageName = location.protocol + "//" + location.hostname + location.pathname;
    for (var i = 0; i < links.length; ++i) {
        if (links[i].href == curPageName) {
            links[i].className = "curpage";
        }
    }
}

window.onload = setCurPage;
