home *** CD-ROM | disk | FTP | other *** search
- tri = new cimg("i/b-tri.gif", "i/b-tri2.gif", "Back to the top");
- home = new cimg("i/b-arrow_l.gif", "i/b-arrow_l2.gif", "Back to KanastaCorp");
-
- counter = new Image();
- counter.src = "http://counter.digits.com/wc/-c/1/-f/FF0033/-b/FFFFFF/Kanastacount";
-
- function cimg(offsrc, onsrc, alt)
- {
- this.off = new Image();
- this.off.src = offsrc;
- this.on = new Image();
- this.on.src = onsrc;
- this.alt = alt;
- }
-
- function on(img, type)
- {
- document[img].src = eval(type).on.src;
- window.status = eval(type).alt;
- }
-
- function off(img, type)
- {
- document[img].src = eval(type).off.src;
- window.status = "";
- }
-