function goToCalendarDay(day, month, year) {
 url = "small/calendar.php?day=" + day + "&month=" + month + "&year=" + year;
 height = "500";
 width = "518";
 popUpContent(url, height, width);
}

function popUpContent(url, height, width) { 
 window.open(url, "popupwindow", "width=" + width + ",height=" + height + "");
}

function enableUpload(id) {
 document.getElementById("upload" + id).style.display = 'table';
}

function editSet(id) {
 theValue = document.getElementById(id).value;
 url = 'album.php?action=edit&photoset=' + theValue;
 window.location = url;
}
