/*

	/global/custom/functions.js
	
*/

function Template_load() {
	if (document.getElementById("btnEmailAll")) {
		document.getElementById("btnEmailAll").onclick = EmailAll;
	}
}
function EmailAll() {
	try {
		location.href = "mailto:" + document.getElementById("hidEmailAll").value;
	} catch (ex) {
	alert("The length of the \"mailto\" value is too long for your web browser to process. This email list is " + document.getElementById("hidEmailAll").value.length + " characters long.  Lengths over 2048 characters may exceed your web browser's limit.");
	}
}

