
function ss(_off) {
locatString = 'mailto:'+_off+'@lochruadh.org';
window.location.replace(locatString);
}
function sa(_off) {
locatString = 'mailto:'+_off+'@ansteorra.org';
window.location.replace(locatString);
}
function showMe(_id) {
	var x = document.getElementsByTagName("div");
	for (var y=0; y<x.length;y++) {
		if(x[y].name=='myEvent') {
			document.getElementById(x[y].id).style.display = 'none';		
		}
	}
	document.getElementById(_id).style.display = 'inline';
}

function hideMe(_id) {
	document.getElementById(_id).style.display = 'none';
}


