
function displayHud(thisSquare) {
	var thisHud = thisSquare + "Hud";
	
	// Open popup HUD
	var hud = document.getElementById(thisHud);
	hud.style.display = "block";

	// Open image gallery to first image
	if (hud) {
		initGallery(thisSquare);
	}
}
