
function addPhoto(id)
{
	var win = window.open("AddPhoto.php?user_id="+id, "_blank", "width=635,height=700,scrollbars=yes,resizable=yes,status=yes");
	win.focus();
}

function editPhoto(id)
{
	var win = window.open("EditPhoto.php?user_photo_id="+id, "_blank", "width=635, height=700, scrollbars=yes, resizable=yes, status=yes");
	win.focus();
}

function removePhoto(id, user_photo_id)
{
	if (confirm("Remove photo?"))
	{
		document.location.href="gallery.php?user_id="+id+"&command=remove-photo&user_photo_id="+user_photo_id;
	}
}
