~clinton-collins/familyproject/trunk

« back to all changes in this revision

Viewing changes to xampp/xampp.js

  • Committer: Clinton Collins
  • Date: 2009-06-26 19:54:58 UTC
  • Revision ID: clinton.collins@gmail.com-20090626195458-5ebba0qcvo15xlpy
Initial Import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
function o(x, m) {
 
2
        if (light == x) {
 
3
                return;
 
4
        }
 
5
        document.images[light + 1].src = "img/" + lightm + "_off.gif";
 
6
        light = x;
 
7
        lightm = m;
 
8
}
 
9
 
 
10
var last;
 
11
function h(t) {
 
12
        if (typeof last == "undefined") {
 
13
                last = document.anchors[0];
 
14
        }
 
15
        last.className = 'n';
 
16
        t.className = 'nh';
 
17
        t.blur();
 
18
        last = t;
 
19
}
 
20
 
 
21
function l(n, m) {
 
22
        document.images[n + 1].src = "img/" + m + "_on.gif";
 
23
}
 
24
 
 
25
function d(n, m) {
 
26
        if (light == n) {
 
27
                return;
 
28
        }
 
29
        document.images[n + 1].src = "img/" + m + "_off.gif";
 
30
}
 
31
 
 
32
function c(u) {
 
33
        parent.content.location = u;
 
34
}