some nice credit page
[phpfspot.git] / phpfspot.js
index 4f8fd5233d1a29517d3aa4556882a776a8d96da8..99da2ce29099e7319b8d836f8c1fdecceede83cd 100644 (file)
@@ -4,6 +4,12 @@ function showImage(id)
    content.innerHTML = HTML_AJAX.grab('rpc.php?action=showphoto&id=' + id);
 }
 
+function showCredits()
+{
+   content = document.getElementById("content");
+   content.innerHTML = HTML_AJAX.grab('rpc.php?action=showcredits');
+}
+
 function Tags(mode, id)
 {
    if(mode == "add") {
@@ -36,3 +42,17 @@ function refreshSelectedTags()
    content = document.getElementById("selected_tags");
    content.innerHTML = HTML_AJAX.grab('rpc.php?action=show_selected_tags');
 }
+
+function showPhotoIndex()
+{
+   HTML_AJAX.replace(document.getElementById("content"), 'rpc.php?action=show_photo_index');
+
+//   content = document.getElementById("content");
+//   content.innerHTML = HTML_AJAX.grab('rpc.php?action=show_photo_index');
+}
+
+function showBubbleDetails(object, id, direction)
+{
+   HTML_AJAX.replace(object, 'rpc.php?action=showbubbledetails&id=' + id + '&direction=" + direction');
+}
+