var Utils={};Utils.trim=function (_5f){return _5f.replace(/^\s+/,"").replace(/\s+$/,"");};function URLAttributes(){}URLAttributes.prototype={toString:function (){var res="";for(var _61 in this){if(this[_61]==null){continue;}if(typeof (this[_61])=="function"){continue;}res+="&"+_61+"="+this[_61];}return res.length>1?res.substring(1):res;}};Utils.getURLAttributes=function (loc){if(loc==null){loc=location.href.toString();}var res=new URLAttributes();var pos=loc.indexOf("?");if(pos>=0){var sub=loc.substring(pos+1);var ar=sub.split("&");for(var i=0;i<ar.length;i++){pos=ar[i].indexOf("=");if(pos>0){res[ar[i].substring(0,pos)]=ar[i].substring(pos+1);}}}return res;};Utils.ef=function (){};Utils.Confirm=function (_68,msg){if(confirm(msg)){window.location.href=_68;}};var U=Utils;