function toggle(checkbox) {
	var newStyle = "photocell"
	if (checkbox.checked) {
	    newStyle = "photocellhighlight";
	}
	var cell = null;
	if (checkbox.parentNode) {
	    cell = checkbox.parentNode;
	}
	else if (checkbox.parentElement) {
	    cell = checkbox.parentElement;
	}
	if (cell) {
		cell.className = newStyle;
	}

}

function confirmDelete(deleteUrl) {
	if (confirm('Are you sure you would like to delete this album?')) {
		window.location = deleteUrl;
	}
}

