
function nextPhoto(titolo, id_photogallery, pagina){
	var page = pagina + 1;
	var poststr = "&titolo="+titolo+"&id_photogallery="+id_photogallery+"&page="+page;
	makePOSTRequest("getPhoto.php",poststr,"photogallery");
}

function prevPhoto(titolo, id_photogallery, pagina){
	var page = pagina - 1;
	var poststr = "&titolo="+titolo+"&id_photogallery="+id_photogallery+"&page="+page;
	var altezzaPic = $('#galleryBox .pic').find('img').height();
	$('#galleryBox .pic').css('height', altezzaPic);
	makePOSTRequest("getPhoto.php",poststr,"photogallery");
}

