// JavaScript Document

function hideElement(id) {
	var e = document.getElementById(id);
	if(e != null) {
		e.style.display = "none";
	}
}

function showElement(id) {
	var e = document.getElementById(id)
	if(e != null) {
		e.style.display = "block";
	}
}

function getGalleryContent(picture, gallery) {
	showElement("gallery_content");
	ajax_loadContent("gallery_info", "load_gallery_info.php?id="+ picture +"&gallery="+ gallery);
}

function sendEmail(picture, gallery, email) {
	showElement("gallery_content");
	ajax_loadContent("gallery_info", "load_gallery_info.php?id="+ picture +"&gallery="+ gallery +"&email="+ email +"&send=true");
}