var WeatherAjaxClient = Class.create({ initialize: function(mod, total, userRegId, site, url, zip, destURL){ this.popLock = false; this.buttonLock = false; this.userId = userRegId; this.siteName = site; this.siteURL = url; this.totalDivCount = total; this.moduleCount = mod; this.curZip = zip; this.destURL = destURL; }, setButtonLock : function(setLock){ this.buttonLock = setLock; }, getButtonLock : function(){ return this.buttonLock; }, setPopLock : function(setLock){ this.popLock = setLock; }, getPopLock : function(){ return this.popLock; }, setModuleCount : function(count){ this.moduleCount = count; }, getModuleCount : function(){ return this.moduleCount; }, setCurrentZip : function(zip){ this.curZip = zip; }, getCurrentZip : function(){ return this.curZip; }, getSiteURL : function(){ return this.siteURL; }, getDestURL : function(){ return this.destURL; } });