// JavaScript Document

// asks before deleting item.
function confirmar(url,msg) {
	doyou = confirm(msg)
	if(doyou == true) document.location.href = url;
}

// goto to add new image
function addImage(album_id){
	document.location.href = "add_image.php?album_id=" + album_id;
}


// go to see images
function listImages(album_id){
	document.location.href = "list_images.php?album_id=" + album_id;
}
