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