a try to make bubble working in IE
[phpfspot.git] / phpfspot.js
1 function showImage(id)
2 {
3    var image_div = document.getElementById("content");
4    image_div.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=showphoto&id=' + id));
5 }
6
7 function showCredits()
8 {
9    var credits = document.getElementById("content");
10    credits.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=showcredits'));
11 }
12
13 function Tags(mode, id)
14 {
15    if(mode == "add") {
16       // add the tag to users session
17       HTML_AJAX.grab(encodeURI('rpc.php?action=addtag&id=' + id));
18    }
19    else if(mode == "del") {
20       // del the tag from users session
21       HTML_AJAX.grab(encodeURI('rpc.php?action=deltag&id=' + id));
22    }
23    else if(mode == "reset") {
24       HTML_AJAX.grab(encodeURI('rpc.php?action=resettags'));
25    }
26    else if(mode == "condition") {
27       setCheckedValue(id, id.value);
28       HTML_AJAX.grab(encodeURI('rpc.php?action=tagcondition&mode=' + id.value));
29    }
30    
31    refreshAvailableTags();
32    refreshSelectedTags();
33    refreshPhotoIndex();
34
35 }
36
37 function refreshAvailableTags()
38 {
39    // update available tags
40    var avail_tags = document.getElementById('available_tags');
41    avail_tags.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=show_available_tags'));
42 }
43
44 function refreshSelectedTags()
45 {
46    // update selected tags
47    var selected_tags = document.getElementById("selected_tags");
48    selected_tags.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=show_selected_tags'));
49 }
50
51 function showPhotoIndex()
52 {
53    HTML_AJAX.replace(document.getElementById("content"), encodeURI('rpc.php?action=show_photo_index'));
54 }
55
56 function showBubbleDetails(object, id, direction)
57 {
58    HTML_AJAX.replace(object, encodeURI('rpc.php?action=showbubbledetails&id=' + id + '&direction=" + direction'));
59 }
60
61 // if photo index is currently shown, refresh it
62 function refreshPhotoIndex()
63 {
64    if(document.getElementById("matrix") != undefined) {
65       showPhotoIndex();
66    }
67 }
68
69 function click(object)
70 {
71    if(object.blur)
72       object.blur();
73
74 }
75
76 // set the radio button with the given value as being checked
77 // do nothing if there are no radio buttons
78 // if the given value does not exist, all the radio buttons
79 // are reset to unchecked
80 function setCheckedValue(condition, value) {
81
82    var count = condition.length;
83    if(count == undefined) {
84       condition.checked = (condition.value == value.toString());
85       return;
86    }
87    for(var i = 0; i < count; i++) {
88       condition[i].checked = false;
89       if(condition[i].value == value.toString()) {
90          condition[i].checked = true;
91       }
92    }
93 }
94
95 function startSearch(searchfor)
96 {
97    HTML_AJAX.grab(encodeURI('rpc.php?action=search&for=' + searchfor));
98    showPhotoIndex();
99
100 }
101
102 function clearSearch()
103 {
104    document.getElementsByName('searchfor')[0].value = '';
105 }