function openAlbum(id) {
	window.location = "gallery.php?id="+id;
}
function openPhoto(id, pid) {
	window.location = "albumview.php?id="+id+"&photo="+pid;
}

function text_expand(elem) {
	if (elem.style.maxHeight == "56px") {
		elem.style.maxHeight = "121px";
	} else {
		elem.style.maxHeight = "56px";
	}
}

function text_hideshow(itemelem) {
	var elem = document.getElementById(itemelem);
	if (elem.style.display == "none") {
		elem.style.display = "";
	} else {
		elem.style.display = "none";
	}
}


function openForm(elem, itemelem) {
	var elem = document.getElementById(itemelem);
	if (elem.style.display == "none") {
		elem.style.display = "";
	} else {
		elem.style.display = "none";
	}
}
