game related functions moved to briskin5, langtolng func 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
577 notify.prototype = {
578     ancestor: null,
579     st: null,
580     notitag: null,
581     toutid: null,
582     
583     unblock: function()
584     {
585         if (this.st.st_loc < this.st.st_loc_new) {
586             this.st.st_loc++;
587         }
588     },
589     
590     hide: function()
591     {
592         clearTimeout(this.toutid);
593         this.ancestor.removeChild(this.notitag);
594         this.unblock();
595     },
596
597     input_hide: function()
598     {
599         clearTimeout(this.obj.toutid);
600         this.obj.ancestor.removeChild(this.obj.notitag);
601         this.obj.unblock();
602     }
603 }
604         
605
606 function $(id) { 
607     return document.getElementById(id); 
608 }
609
610 function globst() {
611     this.st = -1;
612     this.st_loc = -1;
613     this.st_loc_new = -1;
614     this.comms  = new Array;
615 }
616
617
618
619 function remark_step()
620 {
621     var ct = $("remark").l_remct;
622     
623     if (ct != 0) {
624         ct++;
625         if (ct > 2)
626             ct = 1;
627         $("remark").className = "remark"+ct;
628         $("remark").l_remct = ct;
629         setTimeout(remark_step,500);
630     }
631     else
632         $("remark").className = "remark0";
633     
634     return;
635 }
636
637 function remark_on()
638 {
639     if ($("remark").l_remct == 0) {
640         $("remark").l_remct = 1;
641         setTimeout(remark_step,500);
642     }
643 }
644
645 function remark_off()
646 {
647     $("remark").l_remct = 0;
648     $("remark").className = "remark0";
649 }
650
651
652 function italizer(ga)
653 {
654     var pre, pos;
655     if (ga[0] & 2) 
656         return "<i>"+ga[1]+"</i>";
657     else
658         return ga[1];
659 }
660
661
662 function exitlock_show(num, islock)
663 {
664     g_exitlock = num;
665
666     num = (num < 3 ? num : 3);
667     $("exitlock").src = "img/exitlock"+num+(islock ? "n" : "y")+".png";
668     // alert("EXITLOCK: "+$("exitlock").src);
669     $("exitlock").style.visibility = "visible";
670 }
671
672 var fin = 0;
673
674 //    exitlock_show(0, true);
675
676
677 var chatt_lines = new Array();
678 var chatt_lines_n = 0;
679
680 var CHATT_MAXLINES = 40;
681
682 /* PRO CHATT */
683 function chatt_sub(dt,data,str)
684 {
685     var must_scroll = false;
686     var name;
687     var flags;
688     var isauth;
689
690     flags = data[0];
691     if (flags & 0x02)
692         name = "<i>"+data[1]+"</i>";
693     else
694         name = data[1];
695     // alert ($("txt").scrollTop + parseInt(getStyle($("txt"),"height", "height")) -  $("txt").scrollHeight);
696
697   if ($("txt").scrollTop + parseInt(getStyle($("txt"),"height", "height")) -  $("txt").scrollHeight >= 0)
698       must_scroll = true;
699
700   // alert("ARRIVA NAME: "+ name + "  STR:"+str);
701   if (chatt_lines_n == CHATT_MAXLINES) {
702     $("txt").innerHTML = "";
703     for (i = 0 ; i < (CHATT_MAXLINES - 1) ; i++) {
704       chatt_lines[i] = chatt_lines[i+1];
705       $("txt").innerHTML += chatt_lines[i];
706     }
707     chatt_lines[i] = dt+"<b>"+name+"</b> "+str+ "<br>";
708     $("txt").innerHTML += chatt_lines[i];
709   }
710   else {
711     chatt_lines[chatt_lines_n] = dt+"<b>"+name+"</b> "+str+ "<br>";
712     $("txt").innerHTML += chatt_lines[chatt_lines_n];
713     chatt_lines_n++;
714   }
715   // $("txt").innerHTML;
716
717
718   if (must_scroll) {
719       $("txt").scrollTop = 10000000;
720   }
721   // alert("scTOP "+$("txt").scrollTop+"  scHEIGHT: "+$("txt").scrollHeight+" HEIGHT: "+getStyle($("txt"),"height", "height") );
722 }
723
724 /*
725  *  GESTIONE DEI COOKIES
726  */
727 function createCookie(name,value,hours,path) {
728         if (hours) {
729                 var date = new Date();
730                 date.setTime(date.getTime()+(hours*60*60*1000));
731                 var expires = "; expires="+date.toGMTString();
732         }
733         else var expires = "";
734         document.cookie = name+"="+value+expires+"; path="+path;
735 }
736
737 function readCookie(name) {
738         var nameEQ = name + "=";
739         var ca = document.cookie.split(';');
740         for(var i=0;i < ca.length;i++) {
741                 var c = ca[i];
742                 while (c.charAt(0)==' ') c = c.substring(1,c.length);
743                 if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
744         }
745         return null;
746 }
747
748 function eraseCookie(name) {
749         createCookie(name,"",-1);
750 }
751
752 var onunload_times = 0;
753
754
755 function onbeforeunload_cb () {
756     return("");
757 }
758
759 function onunload_cb_old () {
760     var u = 0;
761     
762     //    if (nonunload == true)
763     //     return true;
764     
765     if (onunload_times == 0) {
766         var res = window.confirm("    Vuoi veramente abbandonare la briscola ?\n(clicca annulla o cancel se vuoi ricaricare la briscola)");
767         if (res == true) {
768             the_end = true; 
769             act_shutdown();
770             // while (1) 
771             //  u++;
772         }
773         else {
774             try {
775                 document.location.href = self.location; //  = self.location;
776                 // alert ("passiamo di qui"+self.location);
777                 return (false);
778             } catch (e) {
779                 alert("Ripristino della briscola fallito, per non perdere la sessione ricaricare la pagina manualmente.");
780             }
781         }
782         onunload_times++;
783     }
784     
785     return(false);
786 }
787
788 function onunload_cb () {
789     
790     the_end = true; 
791
792     act_shutdown();
793     
794     return(false);
795 }
796
797
798 function room_checkspace(emme,tables,inpe)
799 {
800     nome = "<b>";
801     for (i = 0 ; i < emme ; i++) 
802         nome += "m";
803     nome += "</b>";
804
805     alta = "";
806     for (i = 0 ; i < 5 ; i++) 
807         alta += nome+"<br>";
808
809     for (i = 0 ; i < tables ; i++) {
810         $("table"+i).innerHTML = alta;
811         $("table_act"+i).innerHTML = "<input type=\"button\" class=\"button\" name=\"xhenter"+i+"\"  value=\"Mi siedo.\" onclick=\"act_sitdown(1);\">";
812         }
813
814     stand = "<table class=\"table_standup\"><tbody><tr>";
815     for (i = 0 ; i < inpe ; i++) {
816         stand += "<td>"+nome+"</td>";
817         if ((i+1) % 4 == 0) {
818             stand += "</tr><tr>";
819         }
820     }
821     stand += "</tr>";
822     $("standup").innerHTML = stand;
823
824     // VERIFY: what is this button ?
825     $("esco").innerHTML = "<input class=\"button\" name=\"logout\" type=\"button\" value=\"Esco.\" onclick=\"act_logout();\" type=\"button\">";
826 }
827
828 function  unescapeHTML(cont) {
829     var div = document.createElement('div');
830     var memo = "";
831     var i;
832
833     div.innerHTML = cont;
834     if (div.childNodes[0]) {
835         if (div.childNodes.length > 1) {
836             if (div.childNodes.toArray)
837                 alert("si puo");
838             else {
839                 var length = div.childNodes.length, results = new Array(length);
840             while (length--)
841                 results[length] = div.childNodes[length];
842                 
843             for (i=0 ; i<results.length ; i++)
844                 memo = memo + results[i].nodeValue;
845             }
846
847             return (memo);
848         }
849         else {
850             return (div.childNodes[0].nodeValue);
851         }
852     }
853     else {
854         return ('');
855     }
856 }
857
858 function playsound(tag, sound) {
859    // g_withflash is a global var
860    if (g_withflash) {
861       $(tag).innerHTML = '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '+
862 'codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0" id="mysound" WIDTH=1 HEIGHT=1>' +
863 '<PARAM NAME="movie" VALUE="../playsound.swf"><PARAM NAME="PLAY" VALUE="true"><PARAM NAME="LOOP" VALUE="false">' +
864 '<PARAM NAME=FlashVars VALUE="streamUrl='+sound+'">' +
865 '<EMBED swliveconnect="true" name="mysound" src="../playsound.swf" FlashVars="streamUrl='+sound+'" PLAY="true" LOOP="false" '+
866 ' WIDTH=1 HEIGHT=1 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></OBJECT>';
867    }
868 }
869
870 function topbanner_init()
871 {
872     setInterval(topbanner_cb, 666);
873 ;
874 }
875
876 function topbanner_cb()
877 {
878     var a, b;
879
880     a = $('topbanner').style.backgroundColor;
881     b = $('topbanner').style.borderLeftColor;
882
883     $('topbanner').style.backgroundColor = b;
884     $('topbanner').style.borderColor = a+" "+a+" "+a+" "+a;
885
886     // console.log("A: "+a+"  B: "+b);
887 }
888
889
890 function langtolng(lang)
891 {
892     if (lang == "en")
893         return ("_en");
894     else
895         return ("");
896 }