function showGallery(id)
{
	document.getElementById("mask").style.display = "block";

	var flashvars = {
		xmlFile: "/gallery-images-" + id + ".xml"
	};

	var params = {
		wmode: "transparent"
	};

	swfobject.embedSWF("/assets/swf/photogallery.swf", "mask-content", "882", "403", "8.0.0", false, flashvars, params);
}

function closeGallery()
{
	document.getElementById("mask").style.display = "none";
}