4 * Copyright (C) 2006-2012 Matteo Nastasi
5 * mailto: nastasi@alternativeoutput.it
6 * matteo.nastasi@milug.org
7 * web: http://www.alternativeoutput.it
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.
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.
25 var EXIT_BAN_TIME = 3600;
26 var cookiepath = "/brisk/";
28 var mlang_commons = { 'imgload_a' : { 'it' : 'Immagine caricate ',
29 'en' : 'Loaded images ' },
30 'imgload_b' : { 'it' : '%.',
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.',
40 'btn_exit' : { 'it' : 'Esco.',
45 function $(id) { return document.getElementById(id); }
47 function getStyle(x,IEstyleProp, MozStyleProp)
50 var y = x.currentStyle[IEstyleProp];
51 } else if (window.getComputedStyle) {
52 var y = document.defaultView.getComputedStyle(x,null).getPropertyValue(MozStyleProp);
57 /* replacement of setInterval on IE */
59 /*if not IE, do nothing*/
60 if(!document.uniqueID){return;};
62 /*Copy the default setInterval behavior*/
63 var nativeSetInterval = window.setInterval;
64 window.setInterval = function(fn,ms) {
66 if(arguments.length <= 2) {
67 return nativeSetInterval(fn,ms);
70 for(var i=2;i<arguments.length;i+=1) {
71 param[i-2] = arguments[i];
75 if(typeof(fn)=='function') {
77 return (function (fn,ms,param) {
78 var fo = function () {
79 fn.apply(window,param);
81 return nativeSetInterval(fo,ms);
84 else if(typeof(fn)=='string')
86 return nativeSetInterval(fn,ms);
90 throw Error('setInterval Error\nInvalid function type');
94 /*Copy the default setTimeout behavior*/
95 var nativeSetTimeout = window.setTimeout;
96 window.setTimeout = function(fn,ms) {
98 if(arguments.length <= 2) {
99 return nativeSetTimeout(fn,ms);
102 for(var i=2;i<arguments.length;i+=1) {
103 param[i-2] = arguments[i];
107 if(typeof(fn)=='function') {
109 return (function (fn,ms,param) {
110 var fo = function () {
111 fn.apply(window,param);
113 return nativeSetTimeout(fo,ms);
116 else if(typeof(fn)=='string')
118 return nativeSetTimeout(fn,ms);
122 throw Error('setTimeout Error\nInvalid function type');
128 function addEvent(obj,type,fn)
130 if (obj.addEventListener) {
131 obj.addEventListener( type, fn, false);
133 else if (obj.attachEvent) {
134 obj["e"+type+fn] = fn;
135 obj[type+fn] = function() { obj["e"+type+fn]( window.event ); }
136 obj.attachEvent( "on"+type, obj[type+fn] );
139 throw new Error("Event registration not supported");
142 function removeEvent(obj,type,fn)
144 if (obj.removeEventListener) {
145 obj.removeEventListener( type, fn, false );
147 else if (obj.detachEvent) {
148 obj.detachEvent( "on"+type, obj[type+fn] );
150 obj["e"+type+fn] = null;
154 // var card_pos = RANGE 0 <= x < cards_ea_n
156 function show_bigpict(obj, act, x, y)
160 if (arguments.length > 4)
165 big = $(obj.id+"_big"+sfx);
167 big.style.left = obj.offsetLeft + x+"px";
168 big.style.top = obj.offsetTop + y+"px";
169 big.style.visibility = "visible";
172 big.style.visibility = "hidden";
176 function rnd_int(min, max) {
177 return Math.floor(Math.random() * (max - min + 1) + min);
180 function error_images()
182 // alert("GHESEMU!");
183 setTimeout(preload_images, 2000, g_preload_img_arr, g_imgct-1);
186 function abort_images()
188 // alert("ABORTAIMAGES");
189 setTimeout(preload_images, 2000, g_preload_img_arr, g_imgct-1);
192 function unload_images()
194 // alert("ABORTAIMAGES");
195 setTimeout(preload_images, 2000, g_preload_img_arr, g_imgct-1);
198 function reset_images()
200 // alert("ABORTAIMAGES");
201 setTimeout(preload_images, 2000, g_preload_img_arr, g_imgct-1);
204 function update_images()
206 // MLANG "Immagine caricate" + g_preload_imgsz_arr[g_imgct] + "%."
207 $("imgct").innerHTML = mlang_commons['imgload_a'][g_lang]+g_preload_imgsz_arr[g_imgct]+"%.";
208 if (g_imgct+1 < g_preload_img_arr.length) {
210 setTimeout(preload_images, 100, g_preload_img_arr, g_imgct-1);
212 // $("imgct").innerHTML += "U";
215 function preload_images(arr,idx)
219 // $("imgct").innerHTML = "Stiamo caricando "+arr[idx]+"%.<br>";
220 im.onload = update_images;
221 im.onerror = error_images;
222 im.onabort = abort_images;
223 im.onunload = unload_images;
224 im.onreset = reset_images;
226 // $("imgct").innerHTML += "P";
229 function safestatus(a)
237 function createXMLHttpRequest() {
238 try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch(e) {}
239 try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch(e) {}
240 try { return new XMLHttpRequest(); } catch(e) {}
241 alert("XMLHttpRequest not supported");
245 function send_mesg(mesg)
247 var xhr_wr = createXMLHttpRequest();
248 var is_conn = (sess == "not_connected" ? false : true);
250 // alert("xhr_wr: "+xhr_wr+" is_conn: "+is_conn);
251 xhr_wr.open('GET', 'index_wr.php?'+(is_conn ? 'sess='+sess+'&' : '')+'mesg='+mesg, (is_conn ? true : false));
252 xhr_wr.setRequestHeader("If-Modified-Since", new Date().toUTCString());
253 xhr_wr.onreadystatechange = function() { return; };
254 if (typeof(g_debug) == 'number' && g_debug > 0
255 && typeof(console) == 'object' && typeof(console.log) == 'function') {
256 var ldate = new Date();
257 console.log(ldate.getTime()+':MESG:'+mesg);
262 if (xhr_wr.responseText != null) {
263 eval(xhr_wr.responseText);
270 server_request([arg0=arg1[, arg2=arg3[, ...]]])
272 function server_request()
274 var xhr_wr = createXMLHttpRequest();
277 if (arguments.length > 0) {
278 for (i = 0 ; i < arguments.length ; i+= 2) {
279 collect += (i == 0 ? "" : "&") + arguments[i] + "=" + encodeURIComponent(arguments[i+1]);
282 // alert("Args: "+arguments.length);
284 var is_conn = (sess == "not_connected" ? false : true);
286 // console.log("server_request:preresp: "+xhr_wr.responseText);
288 xhr_wr.open('GET', 'index_wr.php?'+(is_conn ? 'sess='+sess+'&' : '')+collect, false);
289 xhr_wr.onreadystatechange = function() { return; };
292 if (xhr_wr.responseText != null) {
293 // console.log("server_request:resp: "+xhr_wr.responseText);
294 return (xhr_wr.responseText);
300 /* Stat: CHAT and TABLE */
302 function chatt_checksend(obj,e)
308 if(window.event) { // IE
311 else if(e.which) { // Netscape/Firefox/Opera
314 // alert("OBJ: "+obj);
315 if (keynum == 13 && obj.value != "") { // Enter
316 act_chatt(obj.value);
320 function act_chatt(value)
322 send_mesg("chatt|"+encodeURIComponent(value));
326 obj.disabled = false;
338 function act_sitdown(table)
340 send_mesg("sitdown|"+table);
343 function act_wakeup()
348 function act_splash()
358 function act_passwdhowto()
360 send_mesg("passwdhowto");
363 function act_mesgtoadm()
365 send_mesg("mesgtoadm");
370 act_chatt('/tav '+$('txt_in').value);
371 $('txt_in').value = '';
379 function act_placing()
381 send_mesg("placing");
384 function act_roadmap()
386 send_mesg("roadmap");
389 function act_whysupport()
391 send_mesg("whysupport");
394 function act_lascio()
399 function safelascio()
402 // MLANG "Sei sicuro di volere lasciare questa mano?"
403 res = window.confirm(mlang_commons['gamleav'][g_lang]);
408 function act_logout(exitlock)
410 send_mesg("logout|"+exitlock);
413 function act_reloadroom()
415 window.onunload = null;
416 window.onbeforeunload = null;
417 document.location.assign("index.php");
420 function act_shutdown()
424 send_mesg("shutdown");
425 // while (xhr_wr.readyState != 4)
429 function postact_logout()
431 // alert("postact_logout");
436 // eraseCookie("sess");
437 document.location.assign("index.php");
441 function slowimg(img,x1,y1,deltat,free,action,srcend)
443 x1,y1 - destination coords
444 deltat - time for each frame (in msec)
445 free - when the release the local block for other operations (range: 0 - 1)
446 action - function to run when the image is moved
447 srcend - image to switch when the image is moved
450 function sleep(st, delay)
452 // alert("LOC_NEW PRE: "+st.st_loc_new);
456 setTimeout(function(obj){ if (obj.st_loc_new > obj.st_loc) { obj.st_loc++; }},
460 function slowimg(img,x1,y1,deltat,free,action,srcend) {
463 // this.x0 = parseInt(document.defaultView.getComputedStyle(this.img, "").getPropertyValue("left"));
464 this.x0 = parseInt(getStyle(this.img,"left", "left"));
465 // alert("img.x0 = "+this.x0);
466 // this.y0 = parseInt(document.defaultView.getComputedStyle(this.img, "").getPropertyValue("top"));
467 this.y0 = parseInt(getStyle(this.img,"top", "top"));
470 this.deltat = deltat;
472 this.action = action;
473 this.srcend = srcend;
476 slowimg.prototype = {
495 setstart: function(x0,y0)
501 setaction: function(act)
507 settime: function(time)
509 this.time = (time < this.deltat ? this.deltat : time);
510 this.step_n = parseInt(this.time / this.deltat);
511 this.dx = (this.x1 - this.x0) / this.step_n;
512 this.dy = (this.y1 - this.y0) / this.step_n;
513 if (this.step_n * this.deltat == this.time) {
517 this.step_free = parseInt(this.step_n * this.free);
523 // $("logz").innerHTML += " xxxxxxxxxxxxxxxxxxxxxSTART<br>";
525 this.st.st_loc_new++;
527 this.img.style.visibility = "visible";
528 setTimeout(function(obj){ obj.animate(); }, this.deltat, this);
533 // $("log").innerHTML = "Val " + this.step_cur + " N: " + this.step_n + "<br>";
534 if (this.step_cur == 0) {
535 var date = new Date();
536 // $("logz").innerHTML = "Timestart: " + date + "<br>";
538 if (this.step_cur <= this.step_n) {
539 this.img.style.left = this.x0 + this.dx * this.step_cur;
540 this.img.style.top = this.y0 + this.dy * this.step_cur;
542 setTimeout(function(obj){ obj.animate(); }, this.deltat, this);
543 if (this.step_cur == this.step_free && this.st != null) {
544 if (this.st.st_loc < this.st.st_loc_new) {
545 // alert("QUI1 " + this.step_cur + " ZZ "+ this.step_free);
552 this.img.style.left = this.x1;
553 this.img.style.top = this.y1;
554 // $("logz").innerHTML += "xxxxxxxxxxxxxxxCLEAR<br>";
555 var date = new Date();
556 // $("logz").innerHTML += "Timestop: " + date + "<br>";
558 if (this.action != null) {
562 if (this.st != null && this.st.st_loc < this.st.st_loc_new) {
567 if (this.srcend != null) {
568 this.img.src = this.srcend;
574 function div_show(div)
576 div.style.top = parseInt((document.body.clientHeight - parseInt(getStyle(div,"height", "height"))) / 2) + document.body.scrollTop;
577 div.style.visibility = "visible";
580 function notify_ex(st, text, tout, butt, w, h, is_opa, block_time)
587 this.ancestor = document.body;
589 this.st.st_loc_new++;
591 clo = document.createElement("input");
593 clo.className = "button";
594 clo.style.bottom = "4px";
596 if (block_time > 0) {
597 clo.value = "leggere, prego.";
602 clo.onclick = this.input_hide;
605 clodiv = document.createElement("div");
606 clodiv.className = "notify_clo";
608 this.clodiv = clodiv;
610 clodiv.appendChild(clo);
612 cont = document.createElement("div");
614 cont.style.borderBottomStyle = "solid";
615 cont.style.borderBottomWidth = "1px";
616 cont.style.borderBottomColor = "gray";
617 cont.style.height = (h - 30)+"px";
618 cont.style.overflow = "auto";
619 cont.innerHTML = text;
621 box = document.createElement("div");
623 box.className = "notify_opaque";
625 box.className = "notify";
627 box.style.zIndex = 200;
628 box.style.width = w+"px";
629 box.style.marginLeft = -parseInt(w/2)+"px";
630 box.style.height = h+"px";
631 box.style.top = parseInt((document.body.clientHeight - h) / 2) + document.body.scrollTop;
632 box.appendChild(cont);
633 box.appendChild(clodiv);
634 box.style.visibility = "visible";
638 this.ancestor.appendChild(box);
640 this.toutid = setTimeout(function(obj){ obj.unblock(); }, tout, this);
642 if (block_time != 0) {
643 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);
653 notify_ex.prototype = {
665 if (this.st.st_loc < this.st.st_loc_new) {
672 clearTimeout(this.toutid);
673 this.ancestor.removeChild(this.notitag);
677 input_hide: function()
679 clearTimeout(this.obj.toutid);
680 this.obj.ancestor.removeChild(this.obj.notitag);
686 notify.prototype = notify_ex.prototype; // Define sub-class
687 notify.prototype.constructor = notify;
688 notify.baseConstructor = notify_ex;
689 notify.superClass = notify_ex.prototype;
691 function notify(st, text, tout, butt, w, h)
693 notify_ex.call(this, st, text, tout, butt, w, h, false, 0);
698 return document.getElementById(id);
705 this.st_loc_new = -1;
706 this.comms = new Array;
716 sleep: function(delay) {
720 this.sleep_hdl = setTimeout(function(obj){ if (obj.st_loc_new > obj.st_loc) { obj.st_loc++; obj.sleep_hdl = null; }},
726 if (this.sleep_hdl != null) {
727 clearTimeout(this.sleep_hdl);
728 this.sleep_hdl = null;
733 function remark_step()
735 var ct = $("remark").l_remct;
741 $("remark").className = "remark"+ct;
742 $("remark").l_remct = ct;
743 setTimeout(remark_step,500);
746 $("remark").className = "remark0";
753 if ($("remark").l_remct == 0) {
754 $("remark").l_remct = 1;
755 setTimeout(remark_step,500);
759 function remark_off()
761 $("remark").l_remct = 0;
762 $("remark").className = "remark0";
766 function italizer(ga)
770 return "<i>"+ga[1]+"</i>";
776 function exitlock_show(num, islock)
780 num = (num < 3 ? num : 3);
781 $("exitlock").src = "img/exitlock"+num+(islock ? "n" : "y")+".png";
782 // alert("EXITLOCK: "+$("exitlock").src);
783 $("exitlock").style.visibility = "visible";
788 // exitlock_show(0, true);
791 var chatt_lines = new Array();
792 var chatt_lines_n = 0;
794 var CHATT_MAXLINES = 40;
796 function user_decorator(user)
800 if ((flags & 0x03) != 0)
801 name = "<span class='au" + (flags & 0x03) + "'>"+user[1]+"</span>";
808 function user_dec_and_state(el)
813 content = user_decorator(el);
814 content += state_add(el[0]);
821 function chatt_sub(dt,data,str)
823 var must_scroll = false;
827 var bolder = [ (data[0] | 1), data[1] ];
828 name = user_decorator(bolder);
830 if ($("txt").scrollTop + parseInt(getStyle($("txt"),"height", "height")) - $("txt").scrollHeight >= 0)
833 // alert("ARRIVA NAME: "+ name + " STR:"+str);
834 if (chatt_lines_n == CHATT_MAXLINES) {
835 $("txt").innerHTML = "";
836 for (i = 0 ; i < (CHATT_MAXLINES - 1) ; i++) {
837 chatt_lines[i] = chatt_lines[i+1];
838 $("txt").innerHTML += chatt_lines[i];
840 chatt_lines[i] = dt+name+": "+str+ "<br>";
841 $("txt").innerHTML += chatt_lines[i];
844 chatt_lines[chatt_lines_n] = dt+name+": "+str+ "<br>";
845 $("txt").innerHTML += chatt_lines[chatt_lines_n];
848 // $("txt").innerHTML;
852 $("txt").scrollTop = 10000000;
854 // alert("scTOP "+$("txt").scrollTop+" scHEIGHT: "+$("txt").scrollHeight+" HEIGHT: "+getStyle($("txt"),"height", "height") );
858 * GESTIONE DEI COOKIES
860 function createCookie(name,value,hours,path) {
862 var date = new Date();
863 date.setTime(date.getTime()+(hours*60*60*1000));
864 var expires = "; expires="+date.toGMTString();
866 else var expires = "";
867 document.cookie = name+"="+value+expires+"; path="+path;
870 function readCookie(name) {
871 var nameEQ = name + "=";
872 var ca = document.cookie.split(';');
873 for(var i=0;i < ca.length;i++) {
875 while (c.charAt(0)==' ') c = c.substring(1,c.length);
876 if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
881 function eraseCookie(name) {
882 createCookie(name,"",-1);
885 function onbeforeunload_cb () {
889 function onunload_cb () {
891 if (typeof(hstm) != "undefined")
899 function room_checkspace(emme,tables,inpe)
902 for (i = 0 ; i < emme ; i++)
907 for (i = 0 ; i < 5 ; i++)
910 for (i = 0 ; i < tables ; i++) {
911 $("table"+i).innerHTML = alta;
913 $("table_act"+i).innerHTML = "<input type=\"button\" class=\"button\" name=\"xhenter"+i+"\" value=\""+mlang_commons['btn_sit'][g_lang]+"\" onclick=\"act_sitdown(1);\">";
916 stand = "<table class=\"table_standup\"><tbody><tr>";
917 for (i = 0 ; i < inpe ; i++) {
918 stand += "<td>"+nome+"</td>";
919 if ((i+1) % 4 == 0) {
920 stand += "</tr><tr>";
924 $("standup").innerHTML = stand;
926 // VERIFY: what is this button ?
928 $("esco").innerHTML = "<input class=\"button\" name=\"logout\" type=\"button\" value=\""+mlang_commons['btn_exit'][g_lang]+"\" onclick=\"act_logout();\" type=\"button\">";
931 function unescapeHTML(cont) {
932 var div = document.createElement('div');
936 div.innerHTML = cont;
937 if (div.childNodes[0]) {
938 if (div.childNodes.length > 1) {
939 if (div.childNodes.toArray)
942 var length = div.childNodes.length, results = new Array(length);
944 results[length] = div.childNodes[length];
946 for (i=0 ; i<results.length ; i++)
947 memo = memo + results[i].nodeValue;
953 return (div.childNodes[0].nodeValue);
961 function playsound(tag, sound) {
962 // g_withflash is a global var
964 $(tag).innerHTML = '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '+
965 'codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0" id="mysound" WIDTH=1 HEIGHT=1>' +
966 '<PARAM NAME="movie" VALUE="../playsound.swf"><PARAM NAME="PLAY" VALUE="true"><PARAM NAME="LOOP" VALUE="false">' +
967 '<PARAM NAME=FlashVars VALUE="streamUrl='+sound+'">' +
968 '<EMBED swliveconnect="true" name="mysound" src="../playsound.swf" FlashVars="streamUrl='+sound+'" PLAY="true" LOOP="false" '+
969 ' WIDTH=1 HEIGHT=1 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></OBJECT>';
973 function topbanner_init()
975 setInterval(topbanner_cb, 666);
979 function topbanner_cb()
983 a = $('topbanner').style.backgroundColor;
984 b = $('topbanner').style.borderLeftColor;
986 $('topbanner').style.backgroundColor = b;
987 $('topbanner').style.borderColor = a+" "+a+" "+a+" "+a;
989 // console.log("A: "+a+" B: "+b);
992 function sidebanner_init()
994 setInterval(sidebanner_cb, 666);
997 function sidebanner2_init()
999 setInterval(sidebanner2_cb, 666);
1002 function sidebanner_cb()
1006 a = $('sidebanner').style.backgroundColor;
1007 b = $('sidebanner').style.borderLeftColor;
1009 $('sidebanner').style.backgroundColor = b;
1010 $('sidebanner').style.borderColor = a+" "+a+" "+a+" "+a;
1012 // console.log("A: "+a+" B: "+b);
1015 function sidebanner2_cb()
1019 a = $('sidebanner2').style.backgroundColor;
1020 b = $('sidebanner2').style.borderLeftColor;
1022 $('sidebanner2').style.backgroundColor = b;
1023 $('sidebanner2').style.borderColor = a+" "+a+" "+a+" "+a;
1025 // console.log("A: "+a+" B: "+b);
1029 function langtolng(lang)
1037 function formtext_hilite(obj)
1039 obj.className = 'input_text';
1040 addEvent(obj, "focus", function () { this.className = 'input_text_hi'; });
1041 addEvent(obj, "blur", function () { this.className = 'input_text'; });
1044 function formsub_hilite(obj)
1046 obj.className = 'input_sub';
1047 addEvent(obj, "focus", function () { this.className = 'input_sub_hi'; });
1048 addEvent(obj, "blur", function () { this.className = 'input_sub'; });
1051 // return the value of the radio button that is checked
1052 // return an empty string if none are checked, or
1053 // there are no radio buttons
1054 function get_checked_value(radioObj) {
1057 var radioLength = radioObj.length;
1058 if(radioLength == undefined)
1059 if(radioObj.checked)
1060 return radioObj.value;
1063 for(var i = 0; i < radioLength; i++) {
1064 if(radioObj[i].checked) {
1065 return radioObj[i].value;
1071 // set the radio button with the given value as being checked
1072 // do nothing if there are no radio buttons
1073 // if the given value does not exist, all the radio buttons
1074 // are reset to unchecked
1075 function set_checked_value(radioObj, newValue) {
1078 var radioLength = radioObj.length;
1079 if(radioLength == undefined) {
1080 radioObj.checked = (radioObj.value == newValue.toString());
1083 for(var i = 0; i < radioLength; i++) {
1084 radioObj[i].checked = false;
1085 if(radioObj[i].value == newValue.toString()) {
1086 radioObj[i].checked = true;
1091 function url_append_arg(url, name, value)
1093 var pos, sep, pref, rest;
1095 if ((pos = url.indexOf('?'+name+'=')) == -1) {
1096 pos = url.indexOf('&'+name+'=');
1099 if ((pos = url.indexOf('?')) != -1)
1104 return (url+sep+name+"="+encodeURIComponent(value));
1107 pref = url.substring(0, pos+1);
1108 rest = url.substring(pos+1);
1109 // alert("rest: "+rest+" pos: "+pos);
1110 if ((pos = rest.indexOf('&')) != -1) {
1111 rest = rest.substring(pos);
1116 return (pref+name+"="+encodeURIComponent(value)+rest);
1120 function url_append_args(url)
1125 for (i = 1 ; i < arguments.length-1 ; i+= 2) {
1126 ret = url_append_arg(ret, arguments[i], arguments[i+1]);
1132 function url_complete(parent, url)
1135 var host = "", path = "";
1138 p = parent.indexOf("://");
1140 rest = parent.substring(p+3);
1141 p2 = rest.indexOf("/");
1143 host = parent.substring(0, p+3+p2);
1144 rest = parent.substring(p+3+p2);
1156 p = rest.lastIndexOf("/");
1158 path = rest.substring(0, p+1);
1161 // alert("host: ["+host+"] path: ["+path+"]");
1162 if (url.substring(0,6) == 'http:/' || url.substring(0,7) == 'https:/') {
1165 else if (url.substring(0,1) == '/') {
1169 return (host+path+url);