Merge branch 'tournaments'
[brisk.git] / web / commons.js
1 /*
2  *  brisk - commons.js
3  *
4  *  Copyright (C) 2006-2012 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  */
23
24 var PLAYERS_N = 3;
25 var EXIT_BAN_TIME = 3600;
26 var cookiepath = "/brisk/";
27
28 var mlang_commons = { 'imgload_a' : { 'it' : 'Immagini caricate ',
29                                       'en' : 'Loaded images ' },
30                       'imgload_b' : { 'it' : '%.', 
31                                       'en' : '%.' },
32                       'gamleav'   : { 'it' : 'Sei sicuro di volere lasciare questa mano?' ,
33                                       'en' : 'Are you sure to leave this game?' },
34                       'brileav'   : { 'it' : '    Vuoi veramente abbandonare la briscola ?\n(clicca annulla o cancel se vuoi ricaricare la briscola)',
35                                       'en' : '    Are you really sure to leave briscola ?\n(click cancel yo reload it)' },
36                       'brireco'   : { 'it' : 'Ripristino della briscola fallito, per non perdere la sessione ricaricare la pagina manualmente.',
37                                       'en' : 'Recovery of briscola failed, to keep the current session reload the page manually.' },
38                       'btn_sit'   : { 'it' : 'Mi siedo.',
39                                       'en' : 'Sit down.' },
40                       'btn_exit'  : { 'it' : 'Esco.',
41                                       'en' : 'Exit.' },
42                       'tit_list'  : { '0'  : { 'it' : '',
43                                                'en' : '' },
44                                       '1'  : { 'it' : '(solo aut.)',
45                                                'en' : '(only aut.)' },
46                                       '2'  : { 'it' : '(isolam.to)',
47                                                'en' : '(isolation)' } }
48                     };
49
50 function $(id) { return document.getElementById(id); }
51
52 function dec2hex(d, padding)
53 {
54     var hex = Number(d).toString(16);
55     padding = typeof (padding) === "undefined" || padding === null ? padding = 2 : padding;
56
57     while (hex.length < padding) {
58         hex = "0" + hex;
59     }
60
61     return hex;
62 }
63
64 function getStyle(x,IEstyleProp, MozStyleProp) 
65 {
66     if (x.currentStyle) {
67         var y = x.currentStyle[IEstyleProp];
68     } else if (window.getComputedStyle) {
69         var y = document.defaultView.getComputedStyle(x,null).getPropertyValue(MozStyleProp);
70     }
71     return y;
72 }
73
74 /* replacement of setInterval on IE */
75 (function(){
76     /*if not IE, do nothing*/
77     if(!document.uniqueID){return;};
78
79     /*Copy the default setInterval behavior*/
80     var nativeSetInterval = window.setInterval;
81     window.setInterval = function(fn,ms) {              
82         var param = [];
83         if(arguments.length <= 2)       {
84             return nativeSetInterval(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 nativeSetInterval(fo,ms); 
99             })(fn,ms,param);
100         }
101         else if(typeof(fn)=='string')
102         {
103             return  nativeSetInterval(fn,ms);
104         }
105         else
106         {
107             throw Error('setInterval Error\nInvalid function type');
108         };
109     };
110
111     /*Copy the default setTimeout behavior*/
112     var nativeSetTimeout = window.setTimeout;
113     window.setTimeout = function(fn,ms) {               
114         var param = [];
115         if(arguments.length <= 2)       {
116             return nativeSetTimeout(fn,ms);
117         }
118         else {
119             for(var i=2;i<arguments.length;i+=1) {
120                 param[i-2] =  arguments[i];
121             }   
122         }
123         
124         if(typeof(fn)=='function') {
125             
126             return (function (fn,ms,param) {
127                 var fo = function () {                                                          
128                     fn.apply(window,param);
129                 };                      
130                 return nativeSetTimeout(fo,ms); 
131             })(fn,ms,param);
132         }
133         else if(typeof(fn)=='string')
134         {
135             return  nativeSetTimeout(fn,ms);
136         }
137         else
138         {
139             throw Error('setTimeout Error\nInvalid function type');
140         };
141     };
142
143 })()
144
145 function addEvent(obj,type,fn)
146 {
147     if (obj.addEventListener) {
148         obj.addEventListener( type, fn, false);
149     }
150     else if (obj.attachEvent) {
151         obj["e"+type+fn] = fn;
152         obj[type+fn] = function() { obj["e"+type+fn]( window.event ); }
153         obj.attachEvent( "on"+type, obj[type+fn] );
154     }
155     else
156         throw new Error("Event registration not supported");
157 }
158
159 function removeEvent(obj,type,fn)
160 {
161     if (obj.removeEventListener) {
162         obj.removeEventListener( type, fn, false );
163     }
164     else if (obj.detachEvent) {
165         obj.detachEvent( "on"+type, obj[type+fn] );
166         obj[type+fn] = null;
167         obj["e"+type+fn] = null;
168     }
169 }
170
171     // var card_pos = RANGE 0 <= x < cards_ea_n
172
173 function show_bigpict(obj, act, x, y)
174 {
175    var big, sfx;
176
177    if (arguments.length > 4)
178        sfx = arguments[4];
179    else
180        sfx = '';
181
182    big = $(obj.id+"_big"+sfx);
183    if (act == "over") {
184        big.style.left = obj.offsetLeft + x+"px";
185        big.style.top  = obj.offsetTop  + y+"px";
186        big.style.visibility = "visible";
187        }
188    else {
189        big.style.visibility = "hidden";
190        }
191 }
192
193 function rnd_int(min, max) {
194   return Math.floor(Math.random() * (max - min + 1) + min);
195 }
196
197 function error_images()
198 {
199     // alert("GHESEMU!");
200     setTimeout(preload_images, 2000, g_preload_img_arr, g_imgct-1);
201 }
202
203 function abort_images()
204 {
205     // alert("ABORTAIMAGES");
206     setTimeout(preload_images, 2000, g_preload_img_arr, g_imgct-1);
207 }
208
209 function unload_images()
210 {
211     // alert("ABORTAIMAGES");
212     setTimeout(preload_images, 2000, g_preload_img_arr, g_imgct-1);
213 }
214
215 function reset_images()
216 {
217     // alert("ABORTAIMAGES");
218     setTimeout(preload_images, 2000, g_preload_img_arr, g_imgct-1);
219 }
220
221 function update_images()
222 {
223     // MLANG "Immagine caricate" + g_preload_imgsz_arr[g_imgct] + "%."
224     $("imgct").innerHTML = mlang_commons['imgload_a'][g_lang]+g_preload_imgsz_arr[g_imgct]+"%.";
225     if (g_imgct+1 < g_preload_img_arr.length) {
226         g_imgct++;
227         setTimeout(preload_images, 100, g_preload_img_arr, g_imgct-1);
228     }
229     // $("imgct").innerHTML += "U";
230 }
231
232 function preload_images(arr,idx)
233 {
234     var im = new Image;
235     
236     // $("imgct").innerHTML = "Stiamo caricando "+arr[idx]+"%.<br>";
237     im.onload =   update_images;
238     im.onerror =  error_images;
239     im.onabort =  abort_images;
240     im.onunload = unload_images;
241     im.onreset =  reset_images;
242     im.src =      arr[idx];
243     // $("imgct").innerHTML += "P";
244 }
245
246 function safestatus(a)
247 {
248     try{
249         return (a.status);
250     } catch(b)
251         { return (-1); }
252 }
253
254 function createXMLHttpRequest() {
255     if (typeof(ActiveXObject) != 'undefined') { // Konqueror complain as unknown object
256         try { return new ActiveXObject("Msxml2.XMLHTTP");    } catch(e) {}
257         try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch(e) {}
258     }
259     try { return new XMLHttpRequest();                   } catch(e) {}
260     alert("XMLHttpRequest not supported");
261     return null;
262 }
263
264 function send_mesg(mesg)
265 {
266     var xhr_wr = createXMLHttpRequest();
267     var is_conn = (sess == "not_connected" ? false : true);
268     
269     // alert("xhr_wr: "+xhr_wr+"  is_conn: "+is_conn);
270     xhr_wr.open('GET', 'index_wr.php?'+(is_conn ? 'sess='+sess+'&' : '')+'mesg='+mesg, (is_conn ? true : false));
271     xhr_wr.setRequestHeader("If-Modified-Since", new Date().toUTCString());
272     xhr_wr.onreadystatechange = function() { return; };
273     if (typeof(g_debug) == 'number' && g_debug > 0
274         && typeof(console) == 'object' && typeof(console.log) == 'function') {
275             var ldate = new Date();
276             console.log(ldate.getTime()+':MESG:'+mesg);
277     }
278     xhr_wr.send(null);
279
280     if (!is_conn) {
281         if (xhr_wr.responseText != null) {
282             eval(xhr_wr.responseText);
283         }
284     }
285 }
286
287 /*
288   sync request to server
289   server_request([arg0=arg1[, arg2=arg3[, ...]]])
290   if var name == '__POST__' than all other vars will be managed as POST content
291                                  and the call will be a POST
292  */
293 function server_request()
294 {
295     var xhr_wr = createXMLHttpRequest();
296     var i, collect = "", post_collect = null, is_post = false;
297
298     if (arguments.length > 0) {
299         for (i = 0 ; i < arguments.length ; i+= 2) {
300             if (arguments[i] == "__POST__") {
301                 is_post = true;
302                 post_collect = "";
303                 i -= 1;
304                 continue;
305             }
306             if (is_post)
307                 post_collect += (post_collect == "" ? "" : "&") + arguments[i] + "=" + encodeURIComponent(arguments[i+1]);
308             else
309                 collect += (i == 0 ? "" : "&") + arguments[i] + "=" + encodeURIComponent(arguments[i+1]);
310         }
311     }
312     // alert("Args: "+arguments.length);
313
314     var is_conn = (sess == "not_connected" ? false : true);
315     
316     // console.log("server_request:preresp: "+xhr_wr.responseText);
317
318     if (is_post) {
319         xhr_wr.open('POST', 'index_wr.php?'+(is_conn ? 'sess='+sess+'&' : '')+collect, false);
320         xhr_wr.setRequestHeader("Content-type","application/x-www-form-urlencoded");
321     }
322     else {
323         xhr_wr.open('GET', 'index_wr.php?'+(is_conn ? 'sess='+sess+'&' : '')+collect, false);
324     }
325     xhr_wr.onreadystatechange = function() { return; };
326     xhr_wr.send(post_collect);
327     
328     if (xhr_wr.responseText != null) {
329         // console.log("server_request:resp: "+xhr_wr.responseText);
330         return (xhr_wr.responseText);
331     } 
332     else
333         return (null);
334 }
335
336 /* Stat: CHAT and TABLE */
337
338 function chatt_checksend(obj,e)
339 {
340     var keynum;
341     var keychar;
342     var numcheck;
343
344     if(window.event) { // IE
345         keynum = e.keyCode;
346     }
347     else if(e.which) { // Netscape/Firefox/Opera
348         keynum = e.which;
349     }
350     // alert("OBJ: "+obj);
351     if (keynum == 13 && obj.value != "") { // Enter
352         act_chatt(obj.value);
353         obj.value = "";
354     }
355 }
356 function act_chatt(value)
357 {
358     send_mesg("chatt|"+encodeURIComponent(value));
359     /*
360     obj.disabled = true;
361     obj.value = "";
362     obj.disabled = false;
363     obj.focus();
364     */
365     return false;
366 }
367
368 /* Stat: ROOM */
369 function act_ping()
370 {
371     send_mesg("ping");
372 }
373
374 function act_sitdown(table)
375 {
376     send_mesg("sitdown|"+table);
377 }
378
379 function act_wakeup()
380 {
381     send_mesg("wakeup");
382 }
383
384 function act_splash()
385 {
386     send_mesg("splash");
387 }
388
389 function act_help()
390 {
391     send_mesg("help");
392 }
393
394 function act_passwdhowto()
395 {
396     send_mesg("passwdhowto");
397 }
398
399 function act_mesgtoadm()
400 {
401     send_mesg("mesgtoadm");
402 }
403
404 function act_tav()
405 {
406     act_chatt('/tav '+$('txt_in').value); 
407     $('txt_in').value = '';
408 }
409
410 function act_about()
411 {
412     send_mesg("about");
413 }
414
415 function act_placing()
416 {
417     send_mesg("placing");
418 }
419
420 function act_roadmap()
421 {
422     send_mesg("roadmap");
423 }
424
425 function act_whysupport()
426 {
427     send_mesg("whysupport");
428 }
429
430 function act_lascio()
431 {
432     send_mesg("lascio");
433 }
434
435 function safelascio()
436 {
437     var res;
438     // MLANG "Sei sicuro di volere lasciare questa mano?"
439     res = window.confirm(mlang_commons['gamleav'][g_lang]);
440     if (res)
441         act_lascio();
442 }
443
444 function act_logout(exitlock)
445 {
446     send_mesg("logout|"+exitlock);
447 }
448
449 function act_reloadroom()
450 {
451     window.onunload = null;
452     window.onbeforeunload = null;
453     document.location.assign("index.php");
454 }
455
456 function act_shutdown()
457 {
458     var c = 0;
459
460     send_mesg("shutdown");
461     // while (xhr_wr.readyState != 4)
462     //  c++;
463 }
464
465 function postact_logout()
466 {
467     // alert("postact_logout");
468     try { 
469         hstm.abort();
470     } catch (e) {}
471
472     // eraseCookie("sess");
473     document.location.assign("index.php");
474 }
475
476 /*
477   function slowimg(img,x1,y1,deltat,free,action,srcend)
478   img    - image to move
479   x1,y1  - destination coords
480   deltat - time for each frame (in msec)
481   free   - when the release the local block for other operations (range: 0 - 1)
482   action - function to run when the image is moved
483   srcend - image to switch when the image is moved
484 */
485
486 function sleep(st, delay)
487 {
488     // alert("LOC_NEW PRE: "+st.st_loc_new);
489
490     st.st_loc_new++;
491
492     setTimeout(function(obj){ if (obj.st_loc_new > obj.st_loc) { obj.st_loc++; }},
493                delay, st);
494 }
495
496 function slowimg(img,x1,y1,deltat,free,action,srcend) {
497     this.img = img;
498
499     // this.x0  = parseInt(document.defaultView.getComputedStyle(this.img, "").getPropertyValue("left"));
500     this.x0 = parseInt(getStyle(this.img,"left", "left"));
501 // alert("img.x0 = "+this.x0);
502     // this.y0  = parseInt(document.defaultView.getComputedStyle(this.img, "").getPropertyValue("top"));
503     this.y0  = parseInt(getStyle(this.img,"top", "top"));
504     this.x1  = x1;
505     this.y1  = y1;
506     this.deltat = deltat;
507     this.free = free;
508     this.action = action;
509     this.srcend = srcend;
510 }
511
512 slowimg.prototype = {
513     img: null, 
514     st: null,
515     x0: 0,
516     y0: 0,
517     x1: 0,
518     y1: 0,
519     dx: 0,
520     dy: 0,
521     free: 0,
522     step_n:    0,
523     step_cur:  0,
524     step_free: 0,
525     time:      0,
526     deltat:   40,
527     tout: 0,
528     action: null,
529     srcend: null,
530     
531     setstart: function(x0,y0)
532     {
533         this.x0 = x0;
534         this.y0 = y0;
535     },
536     
537     setaction: function(act)
538     {
539         this.action = act;
540     },
541     
542
543     settime: function(time) 
544     {
545         this.time = (time < this.deltat ? this.deltat : time);
546         this.step_n = parseInt(this.time / this.deltat);
547         this.dx = (this.x1 - this.x0) / this.step_n;
548         this.dy = (this.y1 - this.y0) / this.step_n;
549         if (this.step_n * this.deltat == this.time) {
550             this.step_n--;
551         }
552         if (this.free < 1) {
553             this.step_free = parseInt(this.step_n * this.free);
554         }
555     },
556     
557     start: function(st)
558     {
559         // $("logz").innerHTML += "               xxxxxxxxxxxxxxxxxxxxxSTART<br>";
560         this.st = st;
561         this.st.st_loc_new++;
562         
563         this.img.style.visibility = "visible";
564         setTimeout(function(obj){ obj.animate(); }, this.deltat, this);
565     },
566     
567     animate: function()
568     {
569         // $("log").innerHTML = "Val " + this.step_cur + " N: " + this.step_n + "<br>";
570         if (this.step_cur == 0) {
571             var date = new Date();
572             // $("logz").innerHTML = "Timestart: " + date + "<br>";
573         }
574         if (this.step_cur <= this.step_n) {
575             this.img.style.left = this.x0 + this.dx * this.step_cur;
576             this.img.style.top  = this.y0 + this.dy * this.step_cur;
577             this.step_cur++;
578             setTimeout(function(obj){ obj.animate(); }, this.deltat, this);
579             if (this.step_cur == this.step_free && this.st != null) {
580                 if (this.st.st_loc < this.st.st_loc_new) {
581                     // alert("QUI1  " + this.step_cur + "  ZZ  "+  this.step_free);
582                     this.st.st_loc++;
583                     this.st = null;
584                 }
585             }
586         }
587         else {
588             this.img.style.left = this.x1;
589             this.img.style.top  = this.y1;
590             // $("logz").innerHTML += "xxxxxxxxxxxxxxxCLEAR<br>";
591             var date = new Date();
592             // $("logz").innerHTML += "Timestop: " + date + "<br>";
593
594             if (this.action != null) {
595                 eval(this.action);
596             }
597
598             if (this.st != null && this.st.st_loc < this.st.st_loc_new) {
599                 // alert("QUI2");
600                 this.st.st_loc++;
601                 this.st = null;
602             }
603             if (this.srcend != null) {
604                 this.img.src = this.srcend;
605             }
606         }
607     }
608 }
609
610 function div_show(div)
611 {
612     div.style.top = parseInt((document.body.clientHeight - parseInt(getStyle(div,"height", "height"))) / 2) + document.body.scrollTop;
613     div.style.visibility = "visible";
614 }
615
616 function notify_ex(st, text, tout, butt, w, h, is_opa, block_time)
617 {
618     var clo, box;
619     var t = this;
620     
621     this.st = st;
622
623     this.ancestor = document.body;
624     
625     this.st.st_loc_new++;
626
627     clo = document.createElement("input");
628     clo.type = "submit";
629     clo.className = "button";
630     clo.style.bottom = "4px";
631     clo.obj = this;
632     if (block_time > 0) {
633         clo.value = "leggere, prego.";
634         this.butt = butt;
635     }
636     else {
637         clo.value = butt;
638         clo.onclick = this.input_hide;
639     }
640
641     clodiv = document.createElement("div");
642     clodiv.className = "notify_clo";
643     this.clo = clo;
644     this.clodiv = clodiv;
645
646     clodiv.appendChild(clo);
647
648     cont = document.createElement("div");
649
650     cont.style.borderBottomStyle = "solid";
651     cont.style.borderBottomWidth = "1px";
652     cont.style.borderBottomColor = "gray";
653     cont.style.height = (h - 30)+"px";
654     cont.style.overflow = "auto";
655     cont.innerHTML = text;
656
657     box =  document.createElement("div");
658     if (is_opa)
659         box.className = "notify_opaque";
660     else
661         box.className = "notify";
662
663     box.style.zIndex = 200;
664     box.style.width  = w+"px";
665     box.style.marginLeft  = -parseInt(w/2)+"px";
666     box.style.height = h+"px";
667     box.style.top = parseInt((document.body.clientHeight - h) / 2) + document.body.scrollTop;
668     box.appendChild(cont);
669     box.appendChild(clodiv);
670     box.style.visibility = "visible";
671
672     this.notitag = box;
673     
674     this.ancestor.appendChild(box);
675     
676     this.toutid = setTimeout(function(obj){ obj.unblock(); }, tout, this);
677
678     if (block_time != 0) {
679         this.tblkid = setTimeout(function(obj){ obj.clo.value = obj.butt; obj.clo.onclick = obj.input_hide; formsub_hilite(obj.clo); obj.clo.focus(); }, block_time, this);
680     }
681     else {
682         formsub_hilite(clo);
683         clo.focus();
684     }
685
686 }
687
688
689 notify_ex.prototype = {
690     ancestor: null,
691     st: null,
692     notitag: null,
693     toutid: null,
694     clo: null,
695     clodiv: null, 
696     butt: null,
697     tblkid: null,
698
699     unblock: function()
700     {
701         if (this.st.st_loc < this.st.st_loc_new) {
702             this.st.st_loc++;
703         }
704     },
705     
706     hide: function()
707     {
708         clearTimeout(this.toutid);
709         this.ancestor.removeChild(this.notitag);
710         this.unblock();
711     },
712
713     input_hide: function()
714     {
715         clearTimeout(this.obj.toutid);
716         this.obj.ancestor.removeChild(this.obj.notitag);
717         this.obj.unblock();
718     }
719 }
720
721
722 notify.prototype = notify_ex.prototype;                // Define sub-class
723 notify.prototype.constructor = notify;
724 notify.baseConstructor = notify_ex;
725 notify.superClass = notify_ex.prototype;
726
727 function notify(st, text, tout, butt, w, h)
728 {
729     notify_ex.call(this, st, text, tout, butt, w, h, false, 0);
730 }
731         
732
733 function $(id) { 
734     return document.getElementById(id); 
735 }
736
737
738 function globst() {
739     this.st = -1;
740     this.st_loc = -1;
741     this.st_loc_new = -1;
742     this.comms  = new Array;
743 }
744
745 globst.prototype = {
746     st: -1,
747     st_loc: -1,
748     st_loc_new: -1,
749     comms: null,
750     sleep_hdl: null,
751
752     sleep: function(delay) {
753         st.st_loc_new++;
754
755         if (!this.the_end) {
756             this.sleep_hdl = setTimeout(function(obj){ if (obj.st_loc_new > obj.st_loc) { obj.st_loc++; obj.sleep_hdl = null; }},
757                                         delay, this);
758         }
759     },
760
761     abort: function() {
762         if (this.sleep_hdl != null) {
763             clearTimeout(this.sleep_hdl);
764             this.sleep_hdl = null;
765         }
766     }
767 }
768
769 function remark_step()
770 {
771     var ct = $("remark").l_remct;
772     
773     if (ct != 0) {
774         ct++;
775         if (ct > 2)
776             ct = 1;
777         $("remark").className = "remark"+ct;
778         $("remark").l_remct = ct;
779         setTimeout(remark_step,500);
780     }
781     else
782         $("remark").className = "remark0";
783     
784     return;
785 }
786
787 function remark_on()
788 {
789     if ($("remark").l_remct == 0) {
790         $("remark").l_remct = 1;
791         setTimeout(remark_step,500);
792     }
793 }
794
795 function remark_off()
796 {
797     $("remark").l_remct = 0;
798     $("remark").className = "remark0";
799 }
800
801
802 function italizer(ga)
803 {
804     var pre, pos;
805     if (ga[0] & 2) 
806         return "<i>"+ga[1]+"</i>";
807     else
808         return ga[1];
809 }
810
811
812 function exitlock_show(num, islock)
813 {
814     g_exitlock = num;
815
816     num = (num < 3 ? num : 3);
817     $("exitlock").src = "img/exitlock"+num+(islock ? "n" : "y")+".png";
818     // alert("EXITLOCK: "+$("exitlock").src);
819     $("exitlock").style.visibility = "visible";
820 }
821
822 var fin = 0;
823
824 //    exitlock_show(0, true);
825
826
827 var chatt_lines = new Array();
828 var chatt_lines_n = 0;
829
830 var CHATT_MAXLINES = 40;
831
832 function user_decorator(user)
833 {
834     var name;
835     var flags = user[0];
836     if ((flags & 0x03) != 0)
837         name = "<span class='au" + (flags & 0x03) + "'>"+user[1]+"</span>";
838     else
839         name = user[1];
840
841     return (name);
842 }
843
844 function user_dec_and_state(el)
845 {
846     var content = "";
847     var val_el;
848
849     content = user_decorator(el);
850     content += state_add(el[0],(typeof(el[2]) != 'undefined' ? el[2] : null));
851     
852     return (content);
853 }
854
855
856 /* PRO CHATT */
857 function chatt_sub(dt,data,str)
858 {
859     var must_scroll = false;
860     var name;
861     var flags;
862     var isauth;
863     var bolder = [ (data[0] | 1), data[1] ];
864     name = user_decorator(bolder);
865
866     if ($("txt").scrollTop + parseInt(getStyle($("txt"),"height", "height")) -  $("txt").scrollHeight >= 0)
867         must_scroll = true;
868
869     // alert("ARRIVA NAME: "+ name + "  STR:"+str);
870     if (chatt_lines_n == CHATT_MAXLINES) {
871         $("txt").innerHTML = "";
872         for (i = 0 ; i < (CHATT_MAXLINES - 1) ; i++) {
873             chatt_lines[i] = chatt_lines[i+1];
874             $("txt").innerHTML += chatt_lines[i];
875         }
876         chatt_lines[i] = dt+name+": "+str+ "<br>";
877         $("txt").innerHTML += chatt_lines[i];
878     }
879     else {
880         chatt_lines[chatt_lines_n] = dt+name+": "+str+ "<br>";
881         $("txt").innerHTML += chatt_lines[chatt_lines_n];
882         chatt_lines_n++;
883     }
884     // $("txt").innerHTML;
885
886     
887     if (must_scroll) {
888         $("txt").scrollTop = 10000000;
889     }
890     // alert("scTOP "+$("txt").scrollTop+"  scHEIGHT: "+$("txt").scrollHeight+" HEIGHT: "+getStyle($("txt"),"height", "height") );
891 }
892
893 /*
894  *  GESTIONE DEI COOKIES
895  */
896 function createCookie(name,value,hours,path) {
897         if (hours) {
898                 var date = new Date();
899                 date.setTime(date.getTime()+(hours*60*60*1000));
900                 var expires = "; expires="+date.toGMTString();
901         }
902         else var expires = "";
903         document.cookie = name+"="+value+expires+"; path="+path;
904 }
905
906 function readCookie(name) {
907         var nameEQ = name + "=";
908         var ca = document.cookie.split(';');
909         for(var i=0;i < ca.length;i++) {
910                 var c = ca[i];
911                 while (c.charAt(0)==' ') c = c.substring(1,c.length);
912                 if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
913         }
914         return null;
915 }
916
917 function eraseCookie(name) {
918         createCookie(name,"",-1);
919 }
920
921 function onbeforeunload_cb () {
922     return("");
923 }
924
925 function onunload_cb () {
926     
927     if (typeof(hstm) != "undefined")
928         hstm.the_end = true; 
929
930     act_shutdown();
931     
932     return(false);
933 }
934
935 function room_checkspace(emme,tables,inpe)
936 {
937     nome = "<b>";
938     for (i = 0 ; i < emme ; i++) 
939         nome += "m";
940     nome += "</b>";
941
942     alta = "";
943     for (i = 0 ; i < 5 ; i++) 
944         alta += nome+"<br>";
945
946     for (i = 0 ; i < tables ; i++) {
947         $("table"+i).innerHTML = alta;
948         // MLANG Mi siedo.
949         $("table_act"+i).innerHTML = "<input type=\"button\" class=\"button\" name=\"xhenter"+i+"\"  value=\""+mlang_commons['btn_sit'][g_lang]+"\" onclick=\"act_sitdown(1);\">";
950         }
951
952     stand = "<table class=\"table_standup\"><tbody><tr>";
953     for (i = 0 ; i < inpe ; i++) {
954         stand += "<td>"+nome+"</td>";
955         if ((i+1) % 4 == 0) {
956             stand += "</tr><tr>";
957         }
958     }
959     stand += "</tr>";
960     $("standup").innerHTML = stand;
961
962     // VERIFY: what is this button ?
963     // MLANG Esco.
964     $("esco").innerHTML = "<input class=\"button\" name=\"logout\" type=\"button\" value=\""+mlang_commons['btn_exit'][g_lang]+"\" onclick=\"act_logout();\" type=\"button\">";
965 }
966
967 function  unescapeHTML(cont) {
968     var div = document.createElement('div');
969     var memo = "";
970     var i;
971
972     div.innerHTML = cont;
973     if (div.childNodes[0]) {
974         if (div.childNodes.length > 1) {
975             if (div.childNodes.toArray)
976                 alert("si puo");
977             else {
978                 var length = div.childNodes.length, results = new Array(length);
979             while (length--)
980                 results[length] = div.childNodes[length];
981                 
982             for (i=0 ; i<results.length ; i++)
983                 memo = memo + results[i].nodeValue;
984             }
985
986             return (memo);
987         }
988         else {
989             return (div.childNodes[0].nodeValue);
990         }
991     }
992     else {
993         return ('');
994     }
995 }
996
997 function playsound(tag, sound) {
998    // g_withflash is a global var
999    if (g_withflash) {
1000       $(tag).innerHTML = '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '+
1001 'codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0" id="mysound" WIDTH=1 HEIGHT=1>' +
1002 '<PARAM NAME="movie" VALUE="../playsound.swf"><PARAM NAME="PLAY" VALUE="true"><PARAM NAME="LOOP" VALUE="false">' +
1003 '<PARAM NAME=FlashVars VALUE="streamUrl='+sound+'">' +
1004 '<EMBED swliveconnect="true" name="mysound" src="../playsound.swf" FlashVars="streamUrl='+sound+'" PLAY="true" LOOP="false" '+
1005 ' WIDTH=1 HEIGHT=1 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></OBJECT>';
1006    }
1007 }
1008
1009 function topbanner_init()
1010 {
1011     setInterval(topbanner_cb, 666);
1012 ;
1013 }
1014
1015 function topbanner_cb()
1016 {
1017     var a, b;
1018
1019     a = $('topbanner').style.backgroundColor;
1020     b = $('topbanner').style.borderLeftColor;
1021
1022     $('topbanner').style.backgroundColor = b;
1023     $('topbanner').style.borderColor = a+" "+a+" "+a+" "+a;
1024
1025     // console.log("A: "+a+"  B: "+b);
1026 }
1027
1028 function sidebanner_init()
1029 {
1030     setInterval(sidebanner_cb, 666);
1031 }
1032
1033 function sidebanner2_init()
1034 {
1035     setInterval(sidebanner2_cb, 666);
1036 }
1037
1038 function sidebanner_cb()
1039 {
1040     var a, b;
1041
1042     a = $('sidebanner').style.backgroundColor;
1043     b = $('sidebanner').style.borderLeftColor;
1044
1045     $('sidebanner').style.backgroundColor = b;
1046     $('sidebanner').style.borderColor = a+" "+a+" "+a+" "+a;
1047
1048     // console.log("A: "+a+"  B: "+b);
1049 }
1050
1051 function sidebanner2_cb()
1052 {
1053     var a, b;
1054
1055     a = $('sidebanner2').style.backgroundColor;
1056     b = $('sidebanner2').style.borderLeftColor;
1057
1058     $('sidebanner2').style.backgroundColor = b;
1059     $('sidebanner2').style.borderColor = a+" "+a+" "+a+" "+a;
1060
1061     // console.log("A: "+a+"  B: "+b);
1062 }
1063
1064
1065 function langtolng(lang)
1066 {
1067     if (lang == "en")
1068         return ("-en");
1069     else
1070         return ("");
1071 }
1072
1073 function formtext_hilite(obj)
1074 {
1075     obj.className = 'input_text';
1076     addEvent(obj, "focus", function () { this.className = 'input_text_hi'; });
1077     addEvent(obj, "blur",  function () { this.className = 'input_text'; });
1078 }
1079
1080 function formsub_hilite(obj)
1081 {
1082     obj.className = 'input_sub';
1083     addEvent(obj, "focus", function () { this.className = 'input_sub_hi'; });
1084     addEvent(obj, "blur",  function () { this.className = 'input_sub'; });
1085 }
1086
1087 // return the value of the radio button that is checked
1088 // return an empty string if none are checked, or
1089 // there are no radio buttons
1090 function get_checked_value(radioObj) {
1091         if(!radioObj)
1092                 return "";
1093         var radioLength = radioObj.length;
1094         if(radioLength == undefined)
1095                 if(radioObj.checked)
1096                         return radioObj.value;
1097                 else
1098                         return "";
1099         for(var i = 0; i < radioLength; i++) {
1100                 if(radioObj[i].checked) {
1101                         return radioObj[i].value;
1102                 }
1103         }
1104         return "";
1105 }
1106
1107 // set the radio button with the given value as being checked
1108 // do nothing if there are no radio buttons
1109 // if the given value does not exist, all the radio buttons
1110 // are reset to unchecked
1111 function set_checked_value(radioObj, newValue) {
1112         if(!radioObj)
1113                 return;
1114         var radioLength = radioObj.length;
1115         if(radioLength == undefined) {
1116                 radioObj.checked = (radioObj.value == newValue.toString());
1117                 return;
1118         }
1119         for(var i = 0; i < radioLength; i++) {
1120                 radioObj[i].checked = false;
1121                 if(radioObj[i].value == newValue.toString()) {
1122                         radioObj[i].checked = true;
1123                 }
1124         }
1125 }
1126
1127 function url_append_arg(url, name, value)
1128 {
1129     var pos, sep, pref, rest;
1130
1131     if ((pos = url.indexOf('?'+name+'=')) == -1) {
1132         pos = url.indexOf('&'+name+'=');
1133     }
1134     if (pos == -1) {
1135         if ((pos = url.indexOf('?')) != -1)
1136             sep = '&';
1137         else
1138             sep = '?';
1139
1140         return (url+sep+name+"="+encodeURIComponent(value));
1141     }
1142     else {
1143         pref = url.substring(0, pos+1);
1144         rest = url.substring(pos+1);
1145         // alert("rest: "+rest+"  pos: "+pos);
1146         if ((pos = rest.indexOf('&')) != -1) {
1147             rest = rest.substring(pos);
1148         }
1149         else {
1150             rest = "";
1151         }
1152         return (pref+name+"="+encodeURIComponent(value)+rest);
1153     }
1154 }
1155
1156 function url_append_args(url)
1157 {
1158     var i, ret;
1159
1160     ret = url;
1161     for (i = 1 ; i < arguments.length-1 ; i+= 2) {
1162         ret = url_append_arg(ret, arguments[i], arguments[i+1]);
1163     }
1164
1165     return (ret);
1166 }
1167
1168 function url_complete(parent, url)
1169 {
1170     var p, p2, rest;
1171     var host = "", path = "";
1172
1173     // host extraction
1174     p = parent.indexOf("://");
1175     if (p > -1) {
1176         rest = parent.substring(p+3);
1177         p2 = rest.indexOf("/");
1178         if (p2 > -1) {
1179             host = parent.substring(0, p+3+p2);
1180             rest = parent.substring(p+3+p2);
1181         }
1182         else {
1183             host = rest;
1184             rest = "";
1185         }
1186     }
1187     else {
1188         rest = parent;
1189     }
1190
1191     // path extraction
1192     p = rest.lastIndexOf("/");
1193     if (p > -1) {
1194         path = rest.substring(0, p+1);
1195     }
1196
1197     // alert("host: ["+host+"]  path: ["+path+"]");
1198     if (url.substring(0,6) == 'http:/' || url.substring(0,7) == 'https:/' || url.substring(0,4) == 'ws:/') {
1199         return (url);
1200     }
1201     else if (url.substring(0,1) == '/') {
1202         return (host+url);
1203     }
1204     else {
1205         return (host+path+url);
1206     }
1207 }