4 * Copyright (C) 2006-2011 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.onreadystatechange = function() { return; };
253 if (typeof(g_debug) == 'number' && g_debug > 0
254 && typeof(console) == 'object' && typeof(console.log) == 'function') {
255 var ldate = new Date();
256 console.log(ldate.getTime()+':MESG:'+mesg);
261 if (xhr_wr.responseText != null) {
262 eval(xhr_wr.responseText);
269 server_request([arg0=arg1[, arg2=arg3[, ...]]])
271 function server_request()
273 var xhr_wr = createXMLHttpRequest();
276 if (arguments.length > 0) {
277 for (i = 0 ; i < arguments.length ; i+= 2) {
278 collect += (i == 0 ? "" : "&") + arguments[i] + "=" + encodeURIComponent(arguments[i+1]);
281 // alert("Args: "+arguments.length);
283 var is_conn = (sess == "not_connected" ? false : true);
285 // console.log("server_request:preresp: "+xhr_wr.responseText);
287 xhr_wr.open('GET', 'index_wr.php?'+(is_conn ? 'sess='+sess+'&' : '')+collect, false);
288 xhr_wr.onreadystatechange = function() { return; };
291 if (xhr_wr.responseText != null) {
292 // console.log("server_request:resp: "+xhr_wr.responseText);
293 return (xhr_wr.responseText);
299 /* Stat: CHAT and TABLE */
301 function chatt_checksend(obj,e)
307 if(window.event) { // IE
310 else if(e.which) { // Netscape/Firefox/Opera
313 // alert("OBJ: "+obj);
314 if (keynum == 13 && obj.value != "") { // Enter
315 act_chatt(obj.value);
319 function act_chatt(value)
321 send_mesg("chatt|"+encodeURIComponent(value));
325 obj.disabled = false;
332 function act_sitdown(table)
334 send_mesg("sitdown|"+table);
337 function act_wakeup()
342 function act_splash()
352 function act_passwdhowto()
354 send_mesg("passwdhowto");
357 function act_mesgtoadm()
359 send_mesg("mesgtoadm");
364 act_chatt('/tav '+$('txt_in').value);
365 $('txt_in').value = '';
373 function act_placing()
375 send_mesg("placing");
378 function act_roadmap()
380 send_mesg("roadmap");
383 function act_whysupport()
385 send_mesg("whysupport");
388 function act_lascio()
393 function safelascio()
396 // MLANG "Sei sicuro di volere lasciare questa mano?"
397 res = window.confirm(mlang_commons['gamleav'][g_lang]);
402 function act_logout(exitlock)
404 send_mesg("logout|"+exitlock);
407 function act_reloadroom()
409 window.onunload = null;
410 window.onbeforeunload = null;
411 document.location.assign("index.php");
414 function act_shutdown()
418 send_mesg("shutdown");
419 // while (xhr_wr.readyState != 4)
423 function postact_logout()
425 // alert("postact_logout");
430 // eraseCookie("sess");
431 document.location.assign("index.php");
435 function slowimg(img,x1,y1,deltat,free,action,srcend)
437 x1,y1 - destination coords
438 deltat - time for each frame (in msec)
439 free - when the release the local block for other operations (range: 0 - 1)
440 action - function to run when the image is moved
441 srcend - image to switch when the image is moved
444 function sleep(st, delay)
446 // alert("LOC_NEW PRE: "+st.st_loc_new);
450 setTimeout(function(obj){ if (obj.st_loc_new > obj.st_loc) { obj.st_loc++; }},
454 function slowimg(img,x1,y1,deltat,free,action,srcend) {
457 // this.x0 = parseInt(document.defaultView.getComputedStyle(this.img, "").getPropertyValue("left"));
458 this.x0 = parseInt(getStyle(this.img,"left", "left"));
459 // alert("img.x0 = "+this.x0);
460 // this.y0 = parseInt(document.defaultView.getComputedStyle(this.img, "").getPropertyValue("top"));
461 this.y0 = parseInt(getStyle(this.img,"top", "top"));
464 this.deltat = deltat;
466 this.action = action;
467 this.srcend = srcend;
470 slowimg.prototype = {
489 setstart: function(x0,y0)
495 setaction: function(act)
501 settime: function(time)
503 this.time = (time < this.deltat ? this.deltat : time);
504 this.step_n = parseInt(this.time / this.deltat);
505 this.dx = (this.x1 - this.x0) / this.step_n;
506 this.dy = (this.y1 - this.y0) / this.step_n;
507 if (this.step_n * this.deltat == this.time) {
511 this.step_free = parseInt(this.step_n * this.free);
517 // $("logz").innerHTML += " xxxxxxxxxxxxxxxxxxxxxSTART<br>";
519 this.st.st_loc_new++;
521 this.img.style.visibility = "visible";
522 setTimeout(function(obj){ obj.animate(); }, this.deltat, this);
527 // $("log").innerHTML = "Val " + this.step_cur + " N: " + this.step_n + "<br>";
528 if (this.step_cur == 0) {
529 var date = new Date();
530 // $("logz").innerHTML = "Timestart: " + date + "<br>";
532 if (this.step_cur <= this.step_n) {
533 this.img.style.left = this.x0 + this.dx * this.step_cur;
534 this.img.style.top = this.y0 + this.dy * this.step_cur;
536 setTimeout(function(obj){ obj.animate(); }, this.deltat, this);
537 if (this.step_cur == this.step_free && this.st != null) {
538 if (this.st.st_loc < this.st.st_loc_new) {
539 // alert("QUI1 " + this.step_cur + " ZZ "+ this.step_free);
546 this.img.style.left = this.x1;
547 this.img.style.top = this.y1;
548 // $("logz").innerHTML += "xxxxxxxxxxxxxxxCLEAR<br>";
549 var date = new Date();
550 // $("logz").innerHTML += "Timestop: " + date + "<br>";
552 if (this.action != null) {
556 if (this.st != null && this.st.st_loc < this.st.st_loc_new) {
561 if (this.srcend != null) {
562 this.img.src = this.srcend;
568 function div_show(div)
570 div.style.top = parseInt((document.body.clientHeight - parseInt(getStyle(div,"height", "height"))) / 2) + document.body.scrollTop;
571 div.style.visibility = "visible";
574 function notify_ex(st, text, tout, butt, w, h, is_opa, block_time)
581 this.ancestor = document.body;
583 this.st.st_loc_new++;
585 clo = document.createElement("input");
587 clo.className = "button";
588 clo.style.bottom = "4px";
590 if (block_time > 0) {
591 clo.value = "leggere, prego.";
596 clo.onclick = this.input_hide;
599 clodiv = document.createElement("div");
600 clodiv.className = "notify_clo";
602 this.clodiv = clodiv;
604 clodiv.appendChild(clo);
606 cont = document.createElement("div");
608 cont.style.borderBottomStyle = "solid";
609 cont.style.borderBottomWidth = "1px";
610 cont.style.borderBottomColor = "gray";
611 cont.style.height = (h - 30)+"px";
612 cont.style.overflow = "auto";
613 cont.innerHTML = text;
615 box = document.createElement("div");
617 box.className = "notify_opaque";
619 box.className = "notify";
621 box.style.zIndex = 200;
622 box.style.width = w+"px";
623 box.style.marginLeft = -parseInt(w/2)+"px";
624 box.style.height = h+"px";
625 box.style.top = parseInt((document.body.clientHeight - h) / 2) + document.body.scrollTop;
626 box.appendChild(cont);
627 box.appendChild(clodiv);
628 box.style.visibility = "visible";
632 this.ancestor.appendChild(box);
634 this.toutid = setTimeout(function(obj){ obj.unblock(); }, tout, this);
636 if (block_time != 0) {
637 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);
647 notify_ex.prototype = {
659 if (this.st.st_loc < this.st.st_loc_new) {
666 clearTimeout(this.toutid);
667 this.ancestor.removeChild(this.notitag);
671 input_hide: function()
673 clearTimeout(this.obj.toutid);
674 this.obj.ancestor.removeChild(this.obj.notitag);
680 notify.prototype = notify_ex.prototype; // Define sub-class
681 notify.prototype.constructor = notify;
682 notify.baseConstructor = notify_ex;
683 notify.superClass = notify_ex.prototype;
685 function notify(st, text, tout, butt, w, h)
687 notify_ex.call(this, st, text, tout, butt, w, h, false, 0);
692 return document.getElementById(id);
699 this.st_loc_new = -1;
700 this.comms = new Array;
710 sleep: function(delay) {
714 this.sleep_hdl = setTimeout(function(obj){ if (obj.st_loc_new > obj.st_loc) { obj.st_loc++; obj.sleep_hdl = null; }},
720 if (this.sleep_hdl != null) {
721 clearTimeout(this.sleep_hdl);
722 this.sleep_hdl = null;
727 function remark_step()
729 var ct = $("remark").l_remct;
735 $("remark").className = "remark"+ct;
736 $("remark").l_remct = ct;
737 setTimeout(remark_step,500);
740 $("remark").className = "remark0";
747 if ($("remark").l_remct == 0) {
748 $("remark").l_remct = 1;
749 setTimeout(remark_step,500);
753 function remark_off()
755 $("remark").l_remct = 0;
756 $("remark").className = "remark0";
760 function italizer(ga)
764 return "<i>"+ga[1]+"</i>";
770 function exitlock_show(num, islock)
774 num = (num < 3 ? num : 3);
775 $("exitlock").src = "img/exitlock"+num+(islock ? "n" : "y")+".png";
776 // alert("EXITLOCK: "+$("exitlock").src);
777 $("exitlock").style.visibility = "visible";
782 // exitlock_show(0, true);
785 var chatt_lines = new Array();
786 var chatt_lines_n = 0;
788 var CHATT_MAXLINES = 40;
790 function user_decorator(user)
794 if ((flags & 0x03) != 0)
795 name = "<span class='au" + (flags & 0x03) + "'>"+user[1]+"</span>";
802 function user_dec_and_state(el)
807 content = user_decorator(el);
808 content += state_add(el[0]);
815 function chatt_sub(dt,data,str)
817 var must_scroll = false;
821 var bolder = [ (data[0] | 1), data[1] ];
822 name = user_decorator(bolder);
824 if ($("txt").scrollTop + parseInt(getStyle($("txt"),"height", "height")) - $("txt").scrollHeight >= 0)
827 // alert("ARRIVA NAME: "+ name + " STR:"+str);
828 if (chatt_lines_n == CHATT_MAXLINES) {
829 $("txt").innerHTML = "";
830 for (i = 0 ; i < (CHATT_MAXLINES - 1) ; i++) {
831 chatt_lines[i] = chatt_lines[i+1];
832 $("txt").innerHTML += chatt_lines[i];
834 chatt_lines[i] = dt+name+": "+str+ "<br>";
835 $("txt").innerHTML += chatt_lines[i];
838 chatt_lines[chatt_lines_n] = dt+name+": "+str+ "<br>";
839 $("txt").innerHTML += chatt_lines[chatt_lines_n];
842 // $("txt").innerHTML;
846 $("txt").scrollTop = 10000000;
848 // alert("scTOP "+$("txt").scrollTop+" scHEIGHT: "+$("txt").scrollHeight+" HEIGHT: "+getStyle($("txt"),"height", "height") );
852 * GESTIONE DEI COOKIES
854 function createCookie(name,value,hours,path) {
856 var date = new Date();
857 date.setTime(date.getTime()+(hours*60*60*1000));
858 var expires = "; expires="+date.toGMTString();
860 else var expires = "";
861 document.cookie = name+"="+value+expires+"; path="+path;
864 function readCookie(name) {
865 var nameEQ = name + "=";
866 var ca = document.cookie.split(';');
867 for(var i=0;i < ca.length;i++) {
869 while (c.charAt(0)==' ') c = c.substring(1,c.length);
870 if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
875 function eraseCookie(name) {
876 createCookie(name,"",-1);
879 function onbeforeunload_cb () {
883 function onunload_cb () {
885 if (typeof(hstm) != "undefined")
893 function room_checkspace(emme,tables,inpe)
896 for (i = 0 ; i < emme ; i++)
901 for (i = 0 ; i < 5 ; i++)
904 for (i = 0 ; i < tables ; i++) {
905 $("table"+i).innerHTML = alta;
907 $("table_act"+i).innerHTML = "<input type=\"button\" class=\"button\" name=\"xhenter"+i+"\" value=\""+mlang_commons['btn_sit'][g_lang]+"\" onclick=\"act_sitdown(1);\">";
910 stand = "<table class=\"table_standup\"><tbody><tr>";
911 for (i = 0 ; i < inpe ; i++) {
912 stand += "<td>"+nome+"</td>";
913 if ((i+1) % 4 == 0) {
914 stand += "</tr><tr>";
918 $("standup").innerHTML = stand;
920 // VERIFY: what is this button ?
922 $("esco").innerHTML = "<input class=\"button\" name=\"logout\" type=\"button\" value=\""+mlang_commons['btn_exit'][g_lang]+"\" onclick=\"act_logout();\" type=\"button\">";
925 function unescapeHTML(cont) {
926 var div = document.createElement('div');
930 div.innerHTML = cont;
931 if (div.childNodes[0]) {
932 if (div.childNodes.length > 1) {
933 if (div.childNodes.toArray)
936 var length = div.childNodes.length, results = new Array(length);
938 results[length] = div.childNodes[length];
940 for (i=0 ; i<results.length ; i++)
941 memo = memo + results[i].nodeValue;
947 return (div.childNodes[0].nodeValue);
955 function playsound(tag, sound) {
956 // g_withflash is a global var
958 $(tag).innerHTML = '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '+
959 'codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0" id="mysound" WIDTH=1 HEIGHT=1>' +
960 '<PARAM NAME="movie" VALUE="../playsound.swf"><PARAM NAME="PLAY" VALUE="true"><PARAM NAME="LOOP" VALUE="false">' +
961 '<PARAM NAME=FlashVars VALUE="streamUrl='+sound+'">' +
962 '<EMBED swliveconnect="true" name="mysound" src="../playsound.swf" FlashVars="streamUrl='+sound+'" PLAY="true" LOOP="false" '+
963 ' WIDTH=1 HEIGHT=1 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></OBJECT>';
967 function topbanner_init()
969 setInterval(topbanner_cb, 666);
973 function topbanner_cb()
977 a = $('topbanner').style.backgroundColor;
978 b = $('topbanner').style.borderLeftColor;
980 $('topbanner').style.backgroundColor = b;
981 $('topbanner').style.borderColor = a+" "+a+" "+a+" "+a;
983 // console.log("A: "+a+" B: "+b);
986 function sidebanner_init()
988 setInterval(sidebanner_cb, 666);
991 function sidebanner2_init()
993 setInterval(sidebanner2_cb, 666);
996 function sidebanner_cb()
1000 a = $('sidebanner').style.backgroundColor;
1001 b = $('sidebanner').style.borderLeftColor;
1003 $('sidebanner').style.backgroundColor = b;
1004 $('sidebanner').style.borderColor = a+" "+a+" "+a+" "+a;
1006 // console.log("A: "+a+" B: "+b);
1009 function sidebanner2_cb()
1013 a = $('sidebanner2').style.backgroundColor;
1014 b = $('sidebanner2').style.borderLeftColor;
1016 $('sidebanner2').style.backgroundColor = b;
1017 $('sidebanner2').style.borderColor = a+" "+a+" "+a+" "+a;
1019 // console.log("A: "+a+" B: "+b);
1023 function langtolng(lang)
1031 function formtext_hilite(obj)
1033 obj.className = 'input_text';
1034 addEvent(obj, "focus", function () { this.className = 'input_text_hi'; });
1035 addEvent(obj, "blur", function () { this.className = 'input_text'; });
1038 function formsub_hilite(obj)
1040 obj.className = 'input_sub';
1041 addEvent(obj, "focus", function () { this.className = 'input_sub_hi'; });
1042 addEvent(obj, "blur", function () { this.className = 'input_sub'; });
1045 // return the value of the radio button that is checked
1046 // return an empty string if none are checked, or
1047 // there are no radio buttons
1048 function get_checked_value(radioObj) {
1051 var radioLength = radioObj.length;
1052 if(radioLength == undefined)
1053 if(radioObj.checked)
1054 return radioObj.value;
1057 for(var i = 0; i < radioLength; i++) {
1058 if(radioObj[i].checked) {
1059 return radioObj[i].value;
1065 // set the radio button with the given value as being checked
1066 // do nothing if there are no radio buttons
1067 // if the given value does not exist, all the radio buttons
1068 // are reset to unchecked
1069 function set_checked_value(radioObj, newValue) {
1072 var radioLength = radioObj.length;
1073 if(radioLength == undefined) {
1074 radioObj.checked = (radioObj.value == newValue.toString());
1077 for(var i = 0; i < radioLength; i++) {
1078 radioObj[i].checked = false;
1079 if(radioObj[i].value == newValue.toString()) {
1080 radioObj[i].checked = true;
1085 function url_append_arg(url, name, value)
1087 var pos, sep, pref, rest;
1089 if ((pos = url.indexOf('?'+name+'=')) == -1) {
1090 pos = url.indexOf('&'+name+'=');
1093 if ((pos = url.indexOf('?')) != -1)
1098 return (url+sep+name+"="+encodeURIComponent(value));
1101 pref = url.substring(0, pos+1);
1102 rest = url.substring(pos+1);
1103 // alert("rest: "+rest+" pos: "+pos);
1104 if ((pos = rest.indexOf('&')) != -1) {
1105 rest = rest.substring(pos);
1110 return (pref+name+"="+encodeURIComponent(value)+rest);
1114 function url_append_args(url)
1119 for (i = 1 ; i < arguments.length-1 ; i+= 2) {
1120 ret = url_append_arg(ret, arguments[i], arguments[i+1]);
1126 function url_complete(parent, url)
1129 var host = "", path = "";
1132 p = parent.indexOf("://");
1134 rest = parent.substring(p+3);
1135 p2 = rest.indexOf("/");
1137 host = parent.substring(0, p+3+p2);
1138 rest = parent.substring(p+3+p2);
1150 p = rest.lastIndexOf("/");
1152 path = rest.substring(0, p+1);
1155 // alert("host: ["+host+"] path: ["+path+"]");
1156 if (url.substring(0,6) == 'http:/' || url.substring(0,7) == 'https:/') {
1159 else if (url.substring(0,1) == '/') {
1163 return (host+path+url);