// cached javascript var Babel = { SwitchMode:function(Mode,callback,context){return new ajax_request(this.url + '?_method=SwitchMode&_session=rw','Mode=' + enc(Mode),callback, context);}, resizeImg:function(x1,y1,x2,y2,width,height,origFile,callback,context){return new ajax_request(this.url + '?_method=resizeImg&_session=r','x1=' + enc(x1)+ '\r\ny1=' + enc(y1)+ '\r\nx2=' + enc(x2)+ '\r\ny2=' + enc(y2)+ '\r\nwidth=' + enc(width)+ '\r\nheight=' + enc(height)+ '\r\norigFile=' + enc(origFile),callback, context);}, ImgUpload:function(height,width,fileName,elName,callback,context){return new ajax_request(this.url + '?_method=ImgUpload&_session=r','height=' + enc(height)+ '\r\nwidth=' + enc(width)+ '\r\nfileName=' + enc(fileName)+ '\r\nelName=' + enc(elName),callback, context);}, UpdateSchema:function(dsID,callback,context){return new ajax_request(this.url + '?_method=UpdateSchema&_session=r','dsID=' + enc(dsID),callback, context);}, SaveGroup:function(myParams,SearchFor,callback,context){return new ajax_request(this.url + '?_method=SaveGroup&_session=r','myParams=' + enc(myParams)+ '\r\nSearchFor=' + enc(SearchFor),callback, context);}, Delete:function(key,callback,context){return new ajax_request(this.url + '?_method=Delete&_session=rw','key=' + enc(key),callback, context);}, refresh:function(section,myParams,returnContainer,callback,context){return new ajax_request(this.url + '?_method=refresh&_session=r','section=' + enc(section)+ '\r\nmyParams=' + enc(myParams)+ '\r\nreturnContainer=' + enc(returnContainer),callback, context);}, SetSess:function(key,value,callback,context){return new ajax_request(this.url + '?_method=SetSess&_session=rw','key=' + enc(key)+ '\r\nvalue=' + enc(value),callback, context);}, GetSess:function(key,callback,context){return new ajax_request(this.url + '?_method=GetSess&_session=rw','key=' + enc(key),callback, context);}, RemSess:function(key,callback,context){return new ajax_request(this.url + '?_method=RemSess&_session=rw','key=' + enc(key),callback, context);}, SendEmailTo:function(To,From,Subject,Body,callback,context){return new ajax_request(this.url + '?_method=SendEmailTo&_session=rw','To=' + enc(To)+ '\r\nFrom=' + enc(From)+ '\r\nSubject=' + enc(Subject)+ '\r\nBody=' + enc(Body),callback, context);}, SendEmail:function(From,Subject,Body,callback,context){return new ajax_request(this.url + '?_method=SendEmail&_session=rw','From=' + enc(From)+ '\r\nSubject=' + enc(Subject)+ '\r\nBody=' + enc(Body),callback, context);}, GetControl:function(ID,callback,context){return new ajax_request(this.url + '?_method=GetControl&_session=rw','ID=' + enc(ID),callback, context);}, Save:function(key,value,IDEl,callback,context){return new ajax_request(this.url + '?_method=Save&_session=rw','key=' + enc(key)+ '\r\nvalue=' + enc(value)+ '\r\nIDEl=' + enc(IDEl),callback, context);}, url:'/ajax/Innoware.Babel,BabelControl.ashx' } function HtmlControl(id) { var ele = null; if(typeof(id) == 'object') ele = id; else ele = document.getElementById(id); if(ele == null) return null; var _o = ele.cloneNode(true); var _op = document.createElement('SPAN'); _op.appendChild(_o); this._source = _op.innerHTML; } HtmlControl.prototype.toString = function(){ return this._source; } function HtmlControlUpdate(func, parentId) { var f,i,ff,fa=''; var ele = document.getElementById(parentId); if(ele == null) return; var args = []; for(i=0; i 2) for(i=2; i9999||year<1970||month<1||month>12||day<0||day>31||hours<0||hours>23||minutes<0||minutes>59||seconds<0||seconds>59)throw("ArgumentException");this.Year = year;this.Month = month;this.Day = day;this.Hours = hours;this.Minutes = minutes;this.Seconds = seconds;} DateTime.prototype.toString = function(){return digi(this.Year,4) + digi(this.Month,2) + digi(this.Day,2) + digi(this.Hours,2) + digi(this.Minutes,2) + digi(this.Seconds,2);} function TimeSpan(){this.Days=0;this.Hours=0;this.Minutes=0;this.Seconds=0;this.Milliseconds=0;} TimeSpan.prototype.toString = function(){return this.Days+'.'+this.Hours+':'+this.Minutes+':'+this.Seconds+'.'+this.Milliseconds;}