var myMenu;
window.onload = function() {
	myMenu = new SDMenu("my_menu");
	myMenu.init();
	load();
};

window.onunload = function() {
	GUnload();
}

function load() {
	// Placeholder so that when pages other than the map call the load() function it actually has something
}

function GUnload() {
	// Placeholder so that when pages other than the map call the GUnload() function it actually has something
}

function myMail(a,b,c) {
	var email = a + b + c;
	window.location = "mailto:" + email;
}