jQuery.jqURL={url:function(A){A=jQuery.extend({win:window},A);return A.win.location.href},loc:function(A,B){B=jQuery.extend({win:window,w:500,h:500,wintype:"_top"},B);if(!B.t){B.t=screen.height/2-B.h/2}if(!B.l){B.l=screen.width/2-B.w/2}if(B.wintype=="_top"){B.win.location.href=A}else{open(A,B.wintype,"width="+B.w+",height="+B.h+",top="+B.t+",left="+B.l+",scrollbars,resizable")}return },qs:function(A){A=jQuery.extend({ret:"string",win:window},A);if(A.ret=="string"){return jQuery.jqURL.url({win:A.win}).split("?")[1]}else{if(A.ret=="object"){qsobj=new Object;thisqs=jQuery.jqURL.url({win:A.win}).split("?")[1];pairs=thisqs.split("&");for(i=0;i<pairs.length;i++){pair=pairs[i].split("=");qsobj[pair[0]]=pair[1]}return qsobj}}},strip:function(E){E=jQuery.extend({keys:"",win:window},E);if(D().indexOf("?")==-1){return jQuery.jqURL.url({win:E.win})}else{if(!E.keys){return jQuery.jqURL.url({win:E.win}).split("?")[0]}else{var A=jQuery.jqURL.qs({ret:"object",win:E.win});var B=0;var D=jQuery.jqURL.url({win:E.win}).split("?")[0]+"?";var C="";for(var F in A){if(E.keys.indexOf(F)==-1){C=(B)?"&":"";D=D+C+F+"="+A[F];B++}}return D}}},get:function(B,A){A=jQuery.extend({win:window},A);qsobj=jQuery.jqURL.qs({ret:"object",win:A.win});return qsobj[B]},set:function(D,B){B=jQuery.extend({win:window},B);qsobj=jQuery.jqURL.qs({ret:"object",win:B.win});for(var C in D){qsobj[C]=D[C]}qstring="";counter=0;amp="";for(var A in qsobj){amp=(counter)?"&":"";qstring=qstring+amp+A+"="+qsobj[A];counter++}return jQuery.jqURL.strip({win:B.win})+"?"+qstring}};