add infinite blocking timeout
[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 /*
617   st
618   text
619   tout: if < 0 => infinite
620   butt: [ strings ]
621   w:
622   h:
623   is_opa:
624   block_time:
625   */
626
627 function notify_document(st, text, tout, butt, w, h, is_opa, block_time)
628 {
629     var i, clo, clodiv_ctx, clodiv_wai, box;
630
631     this.st = st;
632
633     this.ancestor = document.body;
634
635     this.st.st_loc_new++;
636
637     clodiv_ctx = document.createElement("div");
638     clodiv_ctx.className = "notify_clo";
639
640     for (i = 0 ; i < butt.length ; i++) {
641         this.input_add(butt[i], i, this.hide, clodiv_ctx);
642     }
643
644     if (block_time > 0) {
645         clodiv_wai = document.createElement("div");
646         clodiv_wai.className = "notify_clo";
647
648         this.input_add("leggere, prego.", 0, null, clodiv_wai);
649         this.clodiv = clodiv_wai;
650         this.clodiv_pkg = clodiv_ctx;
651         clodiv_ctx.style.display = 'none';
652     }
653     else {
654         this.clodiv = clodiv_ctx;
655     }
656
657     cont = document.createElement("div");
658
659     cont.style.borderBottomStyle = "solid";
660     cont.style.borderBottomWidth = "1px";
661     cont.style.borderBottomColor = "gray";
662     cont.style.height = (h - 30)+"px";
663     cont.style.overflow = "auto";
664     cont.innerHTML = text;
665
666     box =  document.createElement("div");
667     if (is_opa)
668         box.className = "notify_opaque";
669     else
670         box.className = "notify";
671
672     box.style.zIndex = 200;
673     box.style.width  = w+"px";
674     box.style.marginLeft  = -parseInt(w/2)+"px";
675     box.style.height = h+"px";
676     box.style.top = parseInt((document.body.clientHeight - h) / 2) + document.body.scrollTop;
677     box.appendChild(cont);
678     box.appendChild(this.clodiv);
679     box.style.visibility = "visible";
680
681     this.notitag = box;
682
683     this.ancestor.appendChild(box);
684
685     if (tout > 0) {
686         this.toutid = setTimeout(function(obj){ obj.unblock(); }, tout, this);
687     }
688
689     if (block_time != 0) {
690         this.tblkid = setTimeout(function(obj){ obj.notitag.removeChild(obj.clodiv); obj.clodiv = obj.clodiv_pkg; obj.clodiv.style.display = '';  obj.notitag.appendChild(obj.clodiv); }, block_time, this);
691     }
692 }
693
694 notify_document.prototype = {
695     ancestor: null,
696     st: null,
697     notitag: null,
698     toutid: null,
699     clo: null,
700
701     clodiv: null,
702     clodiv_pkg: null,
703
704     butt: null,
705     tblkid: null,
706
707     ret: -1,
708
709     /*
710       s:          button string
711       idx:        button index
712       onclick_cb: name of the onclick callback (with signature f(idx) ) or null
713       anc:        parent dom object
714
715       return new button dom object
716       */
717     input_add: function(s, idx, onclick_cb, anc)
718     {
719         var clo;
720
721         clo = document.createElement("input");
722         clo.type    = "submit";
723         clo.className = "button";
724         clo.style.bottom = "4px";
725         clo.style.margin = "2px";
726         clo.obj     = this;
727         clo.obj_idx = idx;
728         clo.value   = s;
729         if (onclick_cb)
730             clo.onclick = function () { onclick_cb.call(this.obj, this.obj_idx); };
731
732         formsub_hilite(clo);
733         anc.appendChild(clo);
734
735         return (clo);
736     },
737
738     ret_get: function()
739     {
740         // alert("quiz: "+this.rett);
741         return this.ret;
742     },
743
744     unblock: function()
745     {
746         if (this.st.st_loc < this.st.st_loc_new) {
747             this.st.st_loc++;
748         }
749     },
750
751     hide: function(val)
752     {
753         this.ret = val;
754         clearTimeout(this.toutid);
755         this.ancestor.removeChild(this.notitag);
756         this.unblock();
757     }
758 }
759
760
761
762
763 function notify_ex(st, text, tout, butt, w, h, is_opa, block_time)
764 {
765     var clo, box;
766     var t = this;
767     
768     this.st = st;
769
770     this.ancestor = document.body;
771     
772     this.st.st_loc_new++;
773
774     clo = document.createElement("input");
775     clo.type = "submit";
776     clo.className = "button";
777     clo.style.bottom = "4px";
778     clo.obj = this;
779     if (block_time > 0) {
780         clo.value = "leggere, prego.";
781         this.butt = butt;
782     }
783     else {
784         clo.value = butt;
785         clo.onclick = function () { this.obj.hide() };
786     }
787
788     clodiv = document.createElement("div");
789     clodiv.className = "notify_clo";
790     this.clo = clo;
791     this.clodiv = clodiv;
792
793     clodiv.appendChild(clo);
794
795     cont = document.createElement("div");
796
797     cont.style.borderBottomStyle = "solid";
798     cont.style.borderBottomWidth = "1px";
799     cont.style.borderBottomColor = "gray";
800     cont.style.height = (h - 30)+"px";
801     cont.style.overflow = "auto";
802     cont.innerHTML = text;
803
804     box =  document.createElement("div");
805     if (is_opa)
806         box.className = "notify_opaque";
807     else
808         box.className = "notify";
809
810     box.style.zIndex = 200;
811     box.style.width  = w+"px";
812     box.style.marginLeft  = -parseInt(w/2)+"px";
813     box.style.height = h+"px";
814     box.style.top = parseInt((document.body.clientHeight - h) / 2) + document.body.scrollTop;
815     box.appendChild(cont);
816     box.appendChild(clodiv);
817     box.style.visibility = "visible";
818
819     this.notitag = box;
820     
821     this.ancestor.appendChild(box);
822     
823     this.toutid = setTimeout(function(obj){ obj.unblock(); }, tout, this);
824
825     if (block_time != 0) {
826         this.tblkid = setTimeout(function(obj){ obj.clo.value = obj.butt; obj.clo.onclick = function () { this.obj.hide() }; formsub_hilite(obj.clo); obj.clo.focus(); }, block_time, this);
827     }
828     else {
829         formsub_hilite(clo);
830         clo.focus();
831     }
832
833 }
834
835
836 notify_ex.prototype = {
837     ancestor: null,
838     st: null,
839     notitag: null,
840     toutid: null,
841     clo: null,
842     clodiv: null, 
843     butt: null,
844     tblkid: null,
845
846     unblock: function()
847     {
848         if (this.st.st_loc < this.st.st_loc_new) {
849             this.st.st_loc++;
850         }
851     },
852     
853     hide: function()
854     {
855         clearTimeout(this.toutid);
856         this.ancestor.removeChild(this.notitag);
857         this.unblock();
858     }
859 }
860
861
862 notify.prototype = notify_ex.prototype;                // Define sub-class
863 notify.prototype.constructor = notify;
864 notify.baseConstructor = notify_ex;
865 notify.superClass = notify_ex.prototype;
866
867 function notify(st, text, tout, butt, w, h)
868 {
869     notify_ex.call(this, st, text, tout, butt, w, h, false, 0);
870 }
871         
872
873 function $(id) { 
874     return document.getElementById(id); 
875 }
876
877
878 function globst() {
879     this.st = -1;
880     this.st_loc = -1;
881     this.st_loc_new = -1;
882     this.comms  = new Array;
883 }
884
885 globst.prototype = {
886     st: -1,
887     st_loc: -1,
888     st_loc_new: -1,
889     comms: null,
890     sleep_hdl: null,
891
892     sleep: function(delay) {
893         st.st_loc_new++;
894
895         if (!this.the_end) {
896             this.sleep_hdl = setTimeout(function(obj){ if (obj.st_loc_new > obj.st_loc) { obj.st_loc++; obj.sleep_hdl = null; }},
897                                         delay, this);
898         }
899     },
900
901     abort: function() {
902         if (this.sleep_hdl != null) {
903             clearTimeout(this.sleep_hdl);
904             this.sleep_hdl = null;
905         }
906     }
907 }
908
909 function remark_step()
910 {
911     var ct = $("remark").l_remct;
912     
913     if (ct != 0) {
914         ct++;
915         if (ct > 2)
916             ct = 1;
917         $("remark").className = "remark"+ct;
918         $("remark").l_remct = ct;
919         setTimeout(remark_step,500);
920     }
921     else
922         $("remark").className = "remark0";
923     
924     return;
925 }
926
927 function remark_on()
928 {
929     if ($("remark").l_remct == 0) {
930         $("remark").l_remct = 1;
931         setTimeout(remark_step,500);
932     }
933 }
934
935 function remark_off()
936 {
937     $("remark").l_remct = 0;
938     $("remark").className = "remark0";
939 }
940
941
942 function italizer(ga)
943 {
944     var pre, pos;
945     if (ga[0] & 2) 
946         return "<i>"+ga[1]+"</i>";
947     else
948         return ga[1];
949 }
950
951
952 function exitlock_show(num, islock)
953 {
954     g_exitlock = num;
955
956     num = (num < 3 ? num : 3);
957     $("exitlock").src = "img/exitlock"+num+(islock ? "n" : "y")+".png";
958     // alert("EXITLOCK: "+$("exitlock").src);
959     $("exitlock").style.visibility = "visible";
960 }
961
962 var fin = 0;
963
964 //    exitlock_show(0, true);
965
966
967 var chatt_lines = new Array();
968 var chatt_lines_n = 0;
969
970 var CHATT_MAXLINES = 40;
971
972 function user_decorator(user)
973 {
974     var name;
975     var flags = user[0];
976     if ((flags & 0x03) != 0)
977         name = "<span class='au" + (flags & 0x03) + "'>"+user[1]+"</span>";
978     else
979         name = user[1];
980
981     return (name);
982 }
983
984 function user_dec_and_state(el)
985 {
986     var content = "";
987     var val_el;
988
989     content = user_decorator(el);
990     content += state_add(el[0],(typeof(el[2]) != 'undefined' ? el[2] : null));
991     
992     return (content);
993 }
994
995
996 /* PRO CHATT */
997 function chatt_sub(dt,data,str)
998 {
999     var must_scroll = false;
1000     var name;
1001     var flags;
1002     var isauth;
1003     var bolder = [ (data[0] | 1), data[1] ];
1004     name = user_decorator(bolder);
1005
1006     if ($("txt").scrollTop + parseInt(getStyle($("txt"),"height", "height")) -  $("txt").scrollHeight >= 0)
1007         must_scroll = true;
1008
1009     // alert("ARRIVA NAME: "+ name + "  STR:"+str);
1010     if (chatt_lines_n == CHATT_MAXLINES) {
1011         $("txt").innerHTML = "";
1012         for (i = 0 ; i < (CHATT_MAXLINES - 1) ; i++) {
1013             chatt_lines[i] = chatt_lines[i+1];
1014             $("txt").innerHTML += chatt_lines[i];
1015         }
1016         chatt_lines[i] = dt+name+": "+str+ "<br>";
1017         $("txt").innerHTML += chatt_lines[i];
1018     }
1019     else {
1020         chatt_lines[chatt_lines_n] = dt+name+": "+str+ "<br>";
1021         $("txt").innerHTML += chatt_lines[chatt_lines_n];
1022         chatt_lines_n++;
1023     }
1024     // $("txt").innerHTML;
1025
1026     
1027     if (must_scroll) {
1028         $("txt").scrollTop = 10000000;
1029     }
1030     // alert("scTOP "+$("txt").scrollTop+"  scHEIGHT: "+$("txt").scrollHeight+" HEIGHT: "+getStyle($("txt"),"height", "height") );
1031 }
1032
1033 /*
1034  *  GESTIONE DEI COOKIES
1035  */
1036 function createCookie(name,value,hours,path) {
1037         if (hours) {
1038                 var date = new Date();
1039                 date.setTime(date.getTime()+(hours*60*60*1000));
1040                 var expires = "; expires="+date.toGMTString();
1041         }
1042         else var expires = "";
1043         document.cookie = name+"="+value+expires+"; path="+path;
1044 }
1045
1046 function readCookie(name) {
1047         var nameEQ = name + "=";
1048         var ca = document.cookie.split(';');
1049         for(var i=0;i < ca.length;i++) {
1050                 var c = ca[i];
1051                 while (c.charAt(0)==' ') c = c.substring(1,c.length);
1052                 if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
1053         }
1054         return null;
1055 }
1056
1057 function eraseCookie(name) {
1058         createCookie(name,"",-1);
1059 }
1060
1061 function onbeforeunload_cb () {
1062     return("");
1063 }
1064
1065 function onunload_cb () {
1066     
1067     if (typeof(hstm) != "undefined")
1068         hstm.the_end = true; 
1069
1070     act_shutdown();
1071     
1072     return(false);
1073 }
1074
1075 function room_checkspace(emme,tables,inpe)
1076 {
1077     nome = "<b>";
1078     for (i = 0 ; i < emme ; i++) 
1079         nome += "m";
1080     nome += "</b>";
1081
1082     alta = "";
1083     for (i = 0 ; i < 5 ; i++) 
1084         alta += nome+"<br>";
1085
1086     for (i = 0 ; i < tables ; i++) {
1087         $("table"+i).innerHTML = alta;
1088         // MLANG Mi siedo.
1089         $("table_act"+i).innerHTML = "<input type=\"button\" class=\"button\" name=\"xhenter"+i+"\"  value=\""+mlang_commons['btn_sit'][g_lang]+"\" onclick=\"act_sitdown(1);\">";
1090         }
1091
1092     stand = "<table class=\"table_standup\"><tbody><tr>";
1093     for (i = 0 ; i < inpe ; i++) {
1094         stand += "<td>"+nome+"</td>";
1095         if ((i+1) % 4 == 0) {
1096             stand += "</tr><tr>";
1097         }
1098     }
1099     stand += "</tr>";
1100     $("standup").innerHTML = stand;
1101
1102     // VERIFY: what is this button ?
1103     // MLANG Esco.
1104     $("esco").innerHTML = "<input class=\"button\" name=\"logout\" type=\"button\" value=\""+mlang_commons['btn_exit'][g_lang]+"\" onclick=\"act_logout();\" type=\"button\">";
1105 }
1106
1107 function  unescapeHTML(cont) {
1108     var div = document.createElement('div');
1109     var memo = "";
1110     var i;
1111
1112     div.innerHTML = cont;
1113     if (div.childNodes[0]) {
1114         if (div.childNodes.length > 1) {
1115             if (div.childNodes.toArray)
1116                 alert("si puo");
1117             else {
1118                 var length = div.childNodes.length, results = new Array(length);
1119             while (length--)
1120                 results[length] = div.childNodes[length];
1121                 
1122             for (i=0 ; i<results.length ; i++)
1123                 memo = memo + results[i].nodeValue;
1124             }
1125
1126             return (memo);
1127         }
1128         else {
1129             return (div.childNodes[0].nodeValue);
1130         }
1131     }
1132     else {
1133         return ('');
1134     }
1135 }
1136
1137 function playsound(tag, sound) {
1138    // g_withflash is a global var
1139    if (g_withflash) {
1140       $(tag).innerHTML = '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '+
1141 'codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0" id="mysound" WIDTH=1 HEIGHT=1>' +
1142 '<PARAM NAME="movie" VALUE="../playsound.swf"><PARAM NAME="PLAY" VALUE="true"><PARAM NAME="LOOP" VALUE="false">' +
1143 '<PARAM NAME=FlashVars VALUE="streamUrl='+sound+'">' +
1144 '<EMBED swliveconnect="true" name="mysound" src="../playsound.swf" FlashVars="streamUrl='+sound+'" PLAY="true" LOOP="false" '+
1145 ' WIDTH=1 HEIGHT=1 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></OBJECT>';
1146    }
1147 }
1148
1149 function topbanner_init()
1150 {
1151     setInterval(topbanner_cb, 666);
1152 ;
1153 }
1154
1155 function topbanner_cb()
1156 {
1157     var a, b;
1158
1159     a = $('topbanner').style.backgroundColor;
1160     b = $('topbanner').style.borderLeftColor;
1161
1162     $('topbanner').style.backgroundColor = b;
1163     $('topbanner').style.borderColor = a+" "+a+" "+a+" "+a;
1164
1165     // console.log("A: "+a+"  B: "+b);
1166 }
1167
1168 function sidebanner_init()
1169 {
1170     setInterval(sidebanner_cb, 666);
1171 }
1172
1173 function sidebanner2_init()
1174 {
1175     setInterval(sidebanner2_cb, 666);
1176 }
1177
1178 function sidebanner_cb()
1179 {
1180     var a, b;
1181
1182     a = $('sidebanner').style.backgroundColor;
1183     b = $('sidebanner').style.borderLeftColor;
1184
1185     $('sidebanner').style.backgroundColor = b;
1186     $('sidebanner').style.borderColor = a+" "+a+" "+a+" "+a;
1187
1188     // console.log("A: "+a+"  B: "+b);
1189 }
1190
1191 function sidebanner2_cb()
1192 {
1193     var a, b;
1194
1195     a = $('sidebanner2').style.backgroundColor;
1196     b = $('sidebanner2').style.borderLeftColor;
1197
1198     $('sidebanner2').style.backgroundColor = b;
1199     $('sidebanner2').style.borderColor = a+" "+a+" "+a+" "+a;
1200
1201     // console.log("A: "+a+"  B: "+b);
1202 }
1203
1204
1205 function langtolng(lang)
1206 {
1207     if (lang == "en")
1208         return ("-en");
1209     else
1210         return ("");
1211 }
1212
1213 function formtext_hilite(obj)
1214 {
1215     obj.className = 'input_text';
1216     addEvent(obj, "focus", function () { this.className = 'input_text_hi'; });
1217     addEvent(obj, "blur",  function () { this.className = 'input_text'; });
1218 }
1219
1220 function formsub_hilite(obj)
1221 {
1222     obj.className = 'input_sub';
1223     addEvent(obj, "focus", function () { this.className = 'input_sub_hi'; });
1224     addEvent(obj, "blur",  function () { this.className = 'input_sub'; });
1225 }
1226
1227 // return the value of the radio button that is checked
1228 // return an empty string if none are checked, or
1229 // there are no radio buttons
1230 function get_checked_value(radioObj) {
1231         if(!radioObj)
1232                 return "";
1233         var radioLength = radioObj.length;
1234         if(radioLength == undefined)
1235                 if(radioObj.checked)
1236                         return radioObj.value;
1237                 else
1238                         return "";
1239         for(var i = 0; i < radioLength; i++) {
1240                 if(radioObj[i].checked) {
1241                         return radioObj[i].value;
1242                 }
1243         }
1244         return "";
1245 }
1246
1247 // set the radio button with the given value as being checked
1248 // do nothing if there are no radio buttons
1249 // if the given value does not exist, all the radio buttons
1250 // are reset to unchecked
1251 function set_checked_value(radioObj, newValue) {
1252         if(!radioObj)
1253                 return;
1254         var radioLength = radioObj.length;
1255         if(radioLength == undefined) {
1256                 radioObj.checked = (radioObj.value == newValue.toString());
1257                 return;
1258         }
1259         for(var i = 0; i < radioLength; i++) {
1260                 radioObj[i].checked = false;
1261                 if(radioObj[i].value == newValue.toString()) {
1262                         radioObj[i].checked = true;
1263                 }
1264         }
1265 }
1266
1267 function url_append_arg(url, name, value)
1268 {
1269     var pos, sep, pref, rest;
1270
1271     if ((pos = url.indexOf('?'+name+'=')) == -1) {
1272         pos = url.indexOf('&'+name+'=');
1273     }
1274     if (pos == -1) {
1275         if ((pos = url.indexOf('?')) != -1)
1276             sep = '&';
1277         else
1278             sep = '?';
1279
1280         return (url+sep+name+"="+encodeURIComponent(value));
1281     }
1282     else {
1283         pref = url.substring(0, pos+1);
1284         rest = url.substring(pos+1);
1285         // alert("rest: "+rest+"  pos: "+pos);
1286         if ((pos = rest.indexOf('&')) != -1) {
1287             rest = rest.substring(pos);
1288         }
1289         else {
1290             rest = "";
1291         }
1292         return (pref+name+"="+encodeURIComponent(value)+rest);
1293     }
1294 }
1295
1296 function url_append_args(url)
1297 {
1298     var i, ret;
1299
1300     ret = url;
1301     for (i = 1 ; i < arguments.length-1 ; i+= 2) {
1302         ret = url_append_arg(ret, arguments[i], arguments[i+1]);
1303     }
1304
1305     return (ret);
1306 }
1307
1308 function url_complete(parent, url)
1309 {
1310     var p, p2, rest;
1311     var host = "", path = "";
1312
1313     // host extraction
1314     p = parent.indexOf("://");
1315     if (p > -1) {
1316         rest = parent.substring(p+3);
1317         p2 = rest.indexOf("/");
1318         if (p2 > -1) {
1319             host = parent.substring(0, p+3+p2);
1320             rest = parent.substring(p+3+p2);
1321         }
1322         else {
1323             host = rest;
1324             rest = "";
1325         }
1326     }
1327     else {
1328         rest = parent;
1329     }
1330
1331     // path extraction
1332     p = rest.lastIndexOf("/");
1333     if (p > -1) {
1334         path = rest.substring(0, p+1);
1335     }
1336
1337     // alert("host: ["+host+"]  path: ["+path+"]");
1338     if (url.substring(0,6) == 'http:/' || url.substring(0,7) == 'https:/' || url.substring(0,4) == 'ws:/') {
1339         return (url);
1340     }
1341     else if (url.substring(0,1) == '/') {
1342         return (host+url);
1343     }
1344     else {
1345         return (host+path+url);
1346     }
1347 }