function NewAlbum() {
	if (IsEmpty("title") || IsEmpty("image_alb")) {
		alert("You must enter a title and an image.");
		return false;
	} else {
		return true;
	}
}

function EditAlbum() {
	if (IsEmpty("title")) {
		alert("You must enter a title and an image.");
		return false;
	} else {
		return true;
	}
}
