formtext_hilite and formsub_hilite added
[brisk.git] / web / commons.js
1 /*
2  *  brisk - commons.js
3  *
4  *  Copyright (C) 2006-2008 Matteo Nastasi
5  *                          mailto: nastasi@alternativeoutput.it 
6  *                                  matteo.nastasi@milug.org
7  *                          web: http://www.alternativeoutput.it
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * General Public License for more details. You should have received a
18  * copy of the GNU General Public License along with this program; if
19  * not, write to the Free Software Foundation, Inc, 59 Temple Place -
20  * Suite 330, Boston, MA 02111-1307, USA.
21  *
22  * $Id$
23  *
24  */
25
26 var PLAYERS_N = 3;
27 var EXIT_BAN_TIME = 900;
28 var cookiepath = "/brisk/";
29
30 function $(id) { return document.getElementById(id); }
31
32 function getStyle(x,IEstyleProp, MozStyleProp) 
33 {
34     if (x.currentStyle) {
35         var y = x.currentStyle[IEstyleProp];
36     } else if (window.getComputedStyle) {
37         var y = document.defaultView.getComputedStyle(x,null).getPropertyValue(MozStyleProp);
38     }
39     return y;
40 }
41
42 /* replacement of setInterval on IE */
43 (function(){
44     /*if not IE, do nothing*/
45     if(!document.uniqueID){return;};
46
47     /*Copy the default setInterval behavior*/
48     var nativeSetInterval = window.setInterval;
49     window.setInterval = function(fn,ms) {              
50         var param = [];
51         if(arguments.length <= 2)       {
52             return nativeSetInterval(fn,ms);
53         }
54         else {
55             for(var i=2;i<arguments.length;i+=1) {
56                 param[i-2] =  arguments[i];
57             }   
58         }
59         
60         if(typeof(fn)=='function') {
61             
62             return (function (fn,ms,param) {
63                 var fo = function () {                                                          
64                     fn.apply(window,param);
65                 };                      
66                 return nativeSetInterval(fo,ms); 
67             })(fn,ms,param);
68         }
69         else if(typeof(fn)=='string')
70         {
71             return  nativeSetInterval(fn,ms);
72         }
73         else
74         {
75             throw Error('setInterval Error\nInvalid function type');
76         };
77     };
78
79     /*Copy the default setTimeout behavior*/
80     var nativeSetTimeout = window.setTimeout;
81     window.setTimeout = function(fn,ms) {               
82         var param = [];
83         if(arguments.length <= 2)       {
84             return nativeSetTimeout(fn,ms);
85         }
86         else {
87             for(var i=2;i<arguments.length;i+=1) {
88                 param[i-2] =  arguments[i];
89             }   
90         }
91         
92         if(typeof(fn)=='function') {
93             
94             return (function (fn,ms,param) {
95                 var fo = function () {                                                          
96                     fn.apply(window,param);
97                 };                      
98                 return nativeSetTimeout(fo,ms); 
99             })(fn,ms,param);
100         }
101         else if(typeof(fn)=='string')
102         {
103             return  nativeSetTimeout(fn,ms);
104         }
105         else
106         {
107             throw Error('setTimeout Error\nInvalid function type');
108         };
109     };
110
111 })()
112
113 function addEvent(obj,type,fn)
114 {
115     if (obj.addEventListener) {
116         obj.addEventListener( type, fn, false);
117     }
118     else if (obj.attachEvent) {
119         obj["e"+type+fn] = fn;
120         obj[type+fn] = function() { obj["e"+type+fn]( window.event ); }
121         obj.attachEvent( "on"+type, obj[type+fn] );
122     }
123     else
124         throw new Error("Event registration not supported");
125 }
126
127 function removeEvent(obj,type,fn)
128 {
129     if (obj.removeEventListener) {
130         obj.removeEventListener( type, fn, false );
131     }
132     else if (obj.detachEvent) {
133         obj.detachEvent( "on"+type, obj[type+fn] );
134         obj[type+fn] = null;
135         obj["e"+type+fn] = null;
136     }
137 }
138
139     // var card_pos = RANGE 0 <= x < cards_ea_n
140
141 function show_bigpict(obj, act, x, y)
142 {
143    var big, sfx;
144
145    if (arguments.length > 4)
146        sfx = arguments[4];
147    else
148        sfx = '';
149
150    big = $(obj.id+"_big"+sfx);
151    if (act == "over") {
152        big.style.left = obj.offsetLeft + x+"px";
153        big.style.top  = obj.offsetTop  + y+"px";
154        big.style.visibility = "visible";
155        }
156    else {
157        big.style.visibility = "hidden";
158        }
159 }
160
161 function rnd_int(min, max) {
162   return Math.floor(Math.random() * (max - min + 1) + min);
163 }
164
165 function error_images()
166 {
167     // alert("GHESEMU!");
168     setTimeout(preload_images, 2000, g_preload_img_arr, g_imgct-1);
169 }
170
171 function abort_images()
172 {
173     // alert("ABORTAIMAGES");
174     setTimeout(preload_images, 2000, g_preload_img_arr, g_imgct-1);
175 }
176
177 function unload_images()
178 {
179     // alert("ABORTAIMAGES");
180     setTimeout(preload_images, 2000, g_preload_img_arr, g_imgct-1);
181 }
182
183 function reset_images()
184 {
185     // alert("ABORTAIMAGES");
186     setTimeout(preload_images, 2000, g_preload_img_arr, g_imgct-1);
187 }
188
189 function update_images()
190 {
191     //    if (g_imgct % 10 == 0) alert("g_imgct: "+g_imgct+" xx "+g_preload_img_arr[g_imgct]);
192     $("imgct").innerHTML = "Immagini caricate "+g_preload_imgsz_arr[g_imgct]+"%.";
193     if (g_imgct+1 < g_preload_img_arr.length) {
194         g_imgct++;
195         setTimeout(preload_images, 100, g_preload_img_arr, g_imgct-1);
196     }
197     // $("imgct").innerHTML += "U";
198 }
199
200 function preload_images(arr,idx)
201 {
202     var im = new Image;
203     
204     // $("imgct").innerHTML = "Stiamo caricando "+arr[idx]+"%.<br>";
205     im.onload =   update_images;
206     im.onerror =  error_images;
207     im.onabort =  abort_images;
208     im.onunload = unload_images;
209     im.onreset =  reset_images;
210     im.src =      arr[idx];
211     // $("imgct").innerHTML += "P";
212 }
213
214 function safestatus(a)
215 {
216     try{
217         return (a.status);
218     } catch(b)
219         { return (-1); }
220 }
221
222 function createXMLHttpRequest() {
223     try { return new ActiveXObject("Msxml2.XMLHTTP");    } catch(e) {}
224     try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch(e) {}
225     try { return new XMLHttpRequest();                   } catch(e) {}
226     alert("XMLHttpRequest not supported");
227     return null;
228 }
229
230 function send_mesg(mesg)
231 {
232     var xhr_wr = createXMLHttpRequest();
233     var is_conn = (sess == "not_connected" ? false : true);
234     
235     // alert("xhr_wr: "+xhr_wr+"  is_conn: "+is_conn);
236     xhr_wr.open('GET', 'index_wr.php?'+(is_conn ? 'sess='+sess+'&' : '')+'mesg='+mesg, (is_conn ? true : false));
237     xhr_wr.onreadystatechange = function() { return; };
238     xhr_wr.send(null);
239
240     if (!is_conn) {
241         if (xhr_wr.responseText != null) {
242             eval(xhr_wr.responseText);
243         }
244     }
245 }
246
247 function server_request()
248 {
249     var xhr_wr = createXMLHttpRequest();
250     var i, collect = "";
251
252     if (arguments.length > 0) {
253         for (i = 0 ; i < arguments.length ; i+= 2) {
254             collect += (i == 0 ? "" : "&") + arguments[i] + "=" + encodeURIComponent(arguments[i+1]);
255         }
256     }
257     // alert("Args: "+arguments.length);
258
259     var is_conn = (sess == "not_connected" ? false : true);
260     
261     // console.log("server_request:preresp: "+xhr_wr.responseText);
262
263     xhr_wr.open('GET', 'index_wr.php?'+(is_conn ? 'sess='+sess+'&' : '')+collect, false);
264     xhr_wr.onreadystatechange = function() { return; };
265     xhr_wr.send(null);
266     
267     if (xhr_wr.responseText != null) {
268         // console.log("server_request:resp: "+xhr_wr.responseText);
269         return (xhr_wr.responseText);
270     } 
271     else
272         return (null);
273 }
274
275 /* Stat: CHAT and TABLE */
276
277 function chatt_checksend(obj,e)
278 {
279     var keynum;
280     var keychar;
281     var numcheck;
282
283     if(window.event) { // IE
284         keynum = e.keyCode;
285     }
286     else if(e.which) { // Netscape/Firefox/Opera
287         keynum = e.which;
288     }
289     // alert("OBJ: "+obj);
290     if (keynum == 13 && obj.value != "") { // Enter
291         act_chatt(obj.value);
292         obj.value = "";
293     }
294 }
295 function act_chatt(value)
296 {
297     send_mesg("chatt|"+encodeURIComponent(value));
298     /*
299     obj.disabled = true;
300     obj.value = "";
301     obj.disabled = false;
302     obj.focus();
303     */
304     return false;
305 }
306
307 /* Stat: ROOM */
308 function act_sitdown(table)
309 {
310     send_mesg("sitdown|"+table);
311 }
312
313 function act_wakeup()
314 {
315     send_mesg("wakeup");
316 }
317
318
319
320 function act_help()
321 {
322     send_mesg("help");
323 }
324
325 function act_tav()
326 {
327     act_chatt('/tav '+$('txt_in').value); 
328     $('txt_in').value = '';
329 }
330
331 function act_about()
332 {
333     send_mesg("about");
334 }
335
336 function act_roadmap()
337 {
338     send_mesg("roadmap");
339 }
340
341 function act_whysupport()
342 {
343     send_mesg("whysupport");
344 }
345
346 function act_lascio()
347 {
348     send_mesg("lascio");
349 }
350
351 function safelascio()
352 {
353     var res;
354
355     res = window.confirm("Sei sicuro di volere lasciare questa mano?");
356     if (res)
357         act_lascio();
358 }
359
360 function act_logout(exitlock)
361 {
362     send_mesg("logout|"+exitlock);
363 }
364
365 function act_reloadroom()
366 {
367     window.onunload = null;
368     window.onbeforeunload = null;
369     document.location.assign("index.php");
370 }
371
372 function act_shutdown()
373 {
374     var c = 0;
375
376     send_mesg("shutdown");
377     // while (xhr_wr.readyState != 4)
378     //  c++;
379 }
380
381 function postact_logout()
382 {
383     // alert("postact_logout");
384     try { 
385         xhr_rd.abort();
386     } catch (e) {}
387
388     // eraseCookie("sess");
389     document.location.assign("index.php");
390 }
391
392 /*
393   function slowimg(img,x1,y1,deltat,free,action,srcend)
394   img    - image to move
395   x1,y1  - destination coords
396   deltat - time for each frame (in msec)
397   free   - when the release the local block for other operations (range: 0 - 1)
398   action - function to run when the image is moved
399   srcend - image to switch when the image is moved
400 */
401
402 function sleep(st, delay)
403 {
404     // alert("LOC_NEW PRE: "+st.st_loc_new);
405
406     st.st_loc_new++;
407
408     setTimeout(function(obj){ if (obj.st_loc_new > obj.st_loc) { obj.st_loc++; }},
409                delay, st);
410 }
411
412 function slowimg(img,x1,y1,deltat,free,action,srcend) {
413     this.img = img;
414
415     // this.x0  = parseInt(document.defaultView.getComputedStyle(this.img, "").getPropertyValue("left"));
416     this.x0 = parseInt(getStyle(this.img,"left", "left"));
417 // alert("img.x0 = "+this.x0);
418     // this.y0  = parseInt(document.defaultView.getComputedStyle(this.img, "").getPropertyValue("top"));
419     this.y0  = parseInt(getStyle(this.img,"top", "top"));
420     this.x1  = x1;
421     this.y1  = y1;
422     this.deltat = deltat;
423     this.free = free;
424     this.action = action;
425     this.srcend = srcend;
426 }
427
428 slowimg.prototype = {
429     img: null, 
430     st: null,
431     x0: 0,
432     y0: 0,
433     x1: 0,
434     y1: 0,
435     dx: 0,
436     dy: 0,
437     free: 0,
438     step_n:    0,
439     step_cur:  0,
440     step_free: 0,
441     time:      0,
442     deltat:   40,
443     tout: 0,
444     action: null,
445     srcend: null,
446     
447     setstart: function(x0,y0)
448     {
449         this.x0 = x0;
450         this.y0 = y0;
451     },
452     
453     setaction: function(act)
454     {
455         this.action = act;
456     },
457     
458
459     settime: function(time) 
460     {
461         this.time = (time < this.deltat ? this.deltat : time);
462         this.step_n = parseInt(this.time / this.deltat);
463         this.dx = (this.x1 - this.x0) / this.step_n;
464         this.dy = (this.y1 - this.y0) / this.step_n;
465         if (this.step_n * this.deltat == this.time) {
466             this.step_n--;
467         }
468         if (this.free < 1) {
469             this.step_free = parseInt(this.step_n * this.free);
470         }
471     },
472     
473     start: function(st)
474     {
475         // $("logz").innerHTML += "               xxxxxxxxxxxxxxxxxxxxxSTART<br>";
476         this.st = st;
477         this.st.st_loc_new++;
478         
479         this.img.style.visibility = "visible";
480         setTimeout(function(obj){ obj.animate(); }, this.deltat, this);
481     },
482     
483     animate: function()
484     {
485         // $("log").innerHTML = "Val " + this.step_cur + " N: " + this.step_n + "<br>";
486         if (this.step_cur == 0) {
487             var date = new Date();
488             // $("logz").innerHTML = "Timestart: " + date + "<br>";
489         }
490         if (this.step_cur <= this.step_n) {
491             this.img.style.left = this.x0 + this.dx * this.step_cur;
492             this.img.style.top  = this.y0 + this.dy * this.step_cur;
493             this.step_cur++;
494             setTimeout(function(obj){ obj.animate(); }, this.deltat, this);
495             if (this.step_cur == this.step_free && this.st != null) {
496                 if (this.st.st_loc < this.st.st_loc_new) {
497                     // alert("QUI1  " + this.step_cur + "  ZZ  "+  this.step_free);
498                     this.st.st_loc++;
499                     this.st = null;
500                 }
501             }
502         }
503         else {
504             this.img.style.left = this.x1;
505             this.img.style.top  = this.y1;
506             // $("logz").innerHTML += "xxxxxxxxxxxxxxxCLEAR<br>";
507             var date = new Date();
508             // $("logz").innerHTML += "Timestop: " + date + "<br>";
509
510             if (this.action != null) {
511                 eval(this.action);
512             }
513
514             if (this.st != null && this.st.st_loc < this.st.st_loc_new) {
515                 // alert("QUI2");
516                 this.st.st_loc++;
517                 this.st = null;
518             }
519             if (this.srcend != null) {
520                 this.img.src = this.srcend;
521             }
522         }
523     }
524 }
525
526
527 function notify(st, text, tout, butt, w, h)
528 {
529     var clo, box;
530     var t = this;
531     
532     this.st = st;
533
534     this.ancestor = document.body;
535     
536     this.st.st_loc_new++;
537
538     clo = document.createElement("input");
539     clo.type = "submit";
540     clo.className = "button";
541     clo.style.bottom = "4px";
542     clo.value = butt;
543     clo.obj = this;
544     clo.onclick = this.input_hide;
545     
546     clodiv = document.createElement("div");
547     clodiv.className = "notify_clo";
548     clodiv.appendChild(clo);
549
550     cont = document.createElement("div");
551
552     cont.style.borderBottomStyle = "solid";
553     cont.style.borderBottomWidth = "1px";
554     cont.style.borderBottomColor = "gray";
555     cont.style.height = (h - 30)+"px";
556     cont.style.overflow = "auto";
557     cont.innerHTML = text;
558
559     box =  document.createElement("div");
560     box.className = "notify";
561     box.style.zIndex = 200;
562     box.style.width  = w+"px";
563     box.style.marginLeft  = -parseInt(w/2)+"px";
564     box.style.height = h+"px";
565     box.style.top = parseInt((document.body.clientHeight - h) / 2) + document.body.scrollTop;
566     box.appendChild(cont);
567     box.appendChild(clodiv);
568     box.style.visibility = "visible";
569
570     this.notitag = box;
571     
572     this.ancestor.appendChild(box);
573     
574     this.toutid = setTimeout(function(obj){ obj.unblock(); }, tout, this);
575
576     formsub_hilite(clo);
577     clo.focus();
578
579 }
580
581 notify.prototype = {
582     ancestor: null,
583     st: null,
584     notitag: null,
585     toutid: null,
586     
587     unblock: function()
588     {
589         if (this.st.st_loc < this.st.st_loc_new) {
590             this.st.st_loc++;
591         }
592     },
593     
594     hide: function()
595     {
596         clearTimeout(this.toutid);
597         this.ancestor.removeChild(this.notitag);
598         this.unblock();
599     },
600
601     input_hide: function()
602     {
603         clearTimeout(this.obj.toutid);
604         this.obj.ancestor.removeChild(this.obj.notitag);
605         this.obj.unblock();
606     }
607 }
608         
609
610 function $(id) { 
611     return document.getElementById(id); 
612 }
613
614 function globst() {
615     this.st = -1;
616     this.st_loc = -1;
617     this.st_loc_new = -1;
618     this.comms  = new Array;
619 }
620
621
622
623 function remark_step()
624 {
625     var ct = $("remark").l_remct;
626     
627     if (ct != 0) {
628         ct++;
629         if (ct > 2)
630             ct = 1;
631         $("remark").className = "remark"+ct;
632         $("remark").l_remct = ct;
633         setTimeout(remark_step,500);
634     }
635     else
636         $("remark").className = "remark0";
637     
638     return;
639 }
640
641 function remark_on()
642 {
643     if ($("remark").l_remct == 0) {
644         $("remark").l_remct = 1;
645         setTimeout(remark_step,500);
646     }
647 }
648
649 function remark_off()
650 {
651     $("remark").l_remct = 0;
652     $("remark").className = "remark0";
653 }
654
655
656 function italizer(ga)
657 {
658     var pre, pos;
659     if (ga[0] & 2) 
660         return "<i>"+ga[1]+"</i>";
661     else
662         return ga[1];
663 }
664
665
666 function exitlock_show(num, islock)
667 {
668     g_exitlock = num;
669
670     num = (num < 3 ? num : 3);
671     $("exitlock").src = "img/exitlock"+num+(islock ? "n" : "y")+".png";
672     // alert("EXITLOCK: "+$("exitlock").src);
673     $("exitlock").style.visibility = "visible";
674 }
675
676 var fin = 0;
677
678 //    exitlock_show(0, true);
679
680
681 var chatt_lines = new Array();
682 var chatt_lines_n = 0;
683
684 var CHATT_MAXLINES = 40;
685
686 /* PRO CHATT */
687 function chatt_sub(dt,data,str)
688 {
689     var must_scroll = false;
690     var name;
691     var flags;
692     var isauth;
693
694     flags = data[0];
695     if (flags & 0x02)
696         name = "<i>"+data[1]+"</i>";
697     else
698         name = data[1];
699     // alert ($("txt").scrollTop + parseInt(getStyle($("txt"),"height", "height")) -  $("txt").scrollHeight);
700
701   if ($("txt").scrollTop + parseInt(getStyle($("txt"),"height", "height")) -  $("txt").scrollHeight >= 0)
702       must_scroll = true;
703
704   // alert("ARRIVA NAME: "+ name + "  STR:"+str);
705   if (chatt_lines_n == CHATT_MAXLINES) {
706     $("txt").innerHTML = "";
707     for (i = 0 ; i < (CHATT_MAXLINES - 1) ; i++) {
708       chatt_lines[i] = chatt_lines[i+1];
709       $("txt").innerHTML += chatt_lines[i];
710     }
711     chatt_lines[i] = dt+"<b>"+name+"</b> "+str+ "<br>";
712     $("txt").innerHTML += chatt_lines[i];
713   }
714   else {
715     chatt_lines[chatt_lines_n] = dt+"<b>"+name+"</b> "+str+ "<br>";
716     $("txt").innerHTML += chatt_lines[chatt_lines_n];
717     chatt_lines_n++;
718   }
719   // $("txt").innerHTML;
720
721
722   if (must_scroll) {
723       $("txt").scrollTop = 10000000;
724   }
725   // alert("scTOP "+$("txt").scrollTop+"  scHEIGHT: "+$("txt").scrollHeight+" HEIGHT: "+getStyle($("txt"),"height", "height") );
726 }
727
728 /*
729  *  GESTIONE DEI COOKIES
730  */
731 function createCookie(name,value,hours,path) {
732         if (hours) {
733                 var date = new Date();
734                 date.setTime(date.getTime()+(hours*60*60*1000));
735                 var expires = "; expires="+date.toGMTString();
736         }
737         else var expires = "";
738         document.cookie = name+"="+value+expires+"; path="+path;
739 }
740
741 function readCookie(name) {
742         var nameEQ = name + "=";
743         var ca = document.cookie.split(';');
744         for(var i=0;i < ca.length;i++) {
745                 var c = ca[i];
746                 while (c.charAt(0)==' ') c = c.substring(1,c.length);
747                 if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
748         }
749         return null;
750 }
751
752 function eraseCookie(name) {
753         createCookie(name,"",-1);
754 }
755
756 var onunload_times = 0;
757
758
759 function onbeforeunload_cb () {
760     return("");
761 }
762
763 function onunload_cb_old () {
764     var u = 0;
765     
766     //    if (nonunload == true)
767     //     return true;
768     
769     if (onunload_times == 0) {
770         var res = window.confirm("    Vuoi veramente abbandonare la briscola ?\n(clicca annulla o cancel se vuoi ricaricare la briscola)");
771         if (res == true) {
772             the_end = true; 
773             act_shutdown();
774             // while (1) 
775             //  u++;
776         }
777         else {
778             try {
779                 document.location.href = self.location; //  = self.location;
780                 // alert ("passiamo di qui"+self.location);
781                 return (false);
782             } catch (e) {
783                 alert("Ripristino della briscola fallito, per non perdere la sessione ricaricare la pagina manualmente.");
784             }
785         }
786         onunload_times++;
787     }
788     
789     return(false);
790 }
791
792 function onunload_cb () {
793     
794     the_end = true; 
795
796     act_shutdown();
797     
798     return(false);
799 }
800
801
802 function room_checkspace(emme,tables,inpe)
803 {
804     nome = "<b>";
805     for (i = 0 ; i < emme ; i++) 
806         nome += "m";
807     nome += "</b>";
808
809     alta = "";
810     for (i = 0 ; i < 5 ; i++) 
811         alta += nome+"<br>";
812
813     for (i = 0 ; i < tables ; i++) {
814         $("table"+i).innerHTML = alta;
815         $("table_act"+i).innerHTML = "<input type=\"button\" class=\"button\" name=\"xhenter"+i+"\"  value=\"Mi siedo.\" onclick=\"act_sitdown(1);\">";
816         }
817
818     stand = "<table class=\"table_standup\"><tbody><tr>";
819     for (i = 0 ; i < inpe ; i++) {
820         stand += "<td>"+nome+"</td>";
821         if ((i+1) % 4 == 0) {
822             stand += "</tr><tr>";
823         }
824     }
825     stand += "</tr>";
826     $("standup").innerHTML = stand;
827
828     // VERIFY: what is this button ?
829     $("esco").innerHTML = "<input class=\"button\" name=\"logout\" type=\"button\" value=\"Esco.\" onclick=\"act_logout();\" type=\"button\">";
830 }
831
832 function  unescapeHTML(cont) {
833     var div = document.createElement('div');
834     var memo = "";
835     var i;
836
837     div.innerHTML = cont;
838     if (div.childNodes[0]) {
839         if (div.childNodes.length > 1) {
840             if (div.childNodes.toArray)
841                 alert("si puo");
842             else {
843                 var length = div.childNodes.length, results = new Array(length);
844             while (length--)
845                 results[length] = div.childNodes[length];
846                 
847             for (i=0 ; i<results.length ; i++)
848                 memo = memo + results[i].nodeValue;
849             }
850
851             return (memo);
852         }
853         else {
854             return (div.childNodes[0].nodeValue);
855         }
856     }
857     else {
858         return ('');
859     }
860 }
861
862 function playsound(tag, sound) {
863    // g_withflash is a global var
864    if (g_withflash) {
865       $(tag).innerHTML = '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '+
866 'codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0" id="mysound" WIDTH=1 HEIGHT=1>' +
867 '<PARAM NAME="movie" VALUE="../playsound.swf"><PARAM NAME="PLAY" VALUE="true"><PARAM NAME="LOOP" VALUE="false">' +
868 '<PARAM NAME=FlashVars VALUE="streamUrl='+sound+'">' +
869 '<EMBED swliveconnect="true" name="mysound" src="../playsound.swf" FlashVars="streamUrl='+sound+'" PLAY="true" LOOP="false" '+
870 ' WIDTH=1 HEIGHT=1 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></OBJECT>';
871    }
872 }
873
874 function topbanner_init()
875 {
876     setInterval(topbanner_cb, 666);
877 ;
878 }
879
880 function topbanner_cb()
881 {
882     var a, b;
883
884     a = $('topbanner').style.backgroundColor;
885     b = $('topbanner').style.borderLeftColor;
886
887     $('topbanner').style.backgroundColor = b;
888     $('topbanner').style.borderColor = a+" "+a+" "+a+" "+a;
889
890     // console.log("A: "+a+"  B: "+b);
891 }
892
893
894 function langtolng(lang)
895 {
896     if (lang == "en")
897         return ("_en");
898     else
899         return ("");
900 }
901
902 function formtext_hilite(obj)
903 {
904     obj.className = 'input_text';
905     addEvent(obj, "focus", function () { this.className = 'input_text_hi'; });
906     addEvent(obj, "blur",  function () { this.className = 'input_text'; });
907 }
908
909 function formsub_hilite(obj)
910 {
911     obj.className = 'input_sub';
912     addEvent(obj, "focus", function () { this.className = 'input_sub_hi'; });
913     addEvent(obj, "blur",  function () { this.className = 'input_sub'; });
914 }
915