function toggleAlbumEdit(id){
	var editForm = document.getElementById("editForm_" + id);
	if (editForm.style.display != "block"){
		if (!document.defaultView){
			editForm.style.marginLeft = id ? "-50px" : "-120px";
		}
		editForm.style.position = "absolute";
		editForm.style.zIndex = "99";
		editForm.style.display = "block";
	}
	else{
		editForm.style.position = "static";
		editForm.style.display = "none";
	}
}