dojo.require("dojo.cookie");PhysicalStoreCookieJS={storeArray:null,arrayMaxSize:10,getStoreIdsFromCookie:function(){var e=dojo.cookie("WC_physicalStores");this.storeArray=new Array;if(e!=null){var d="";var c=e;var b=e.length;var a=c.indexOf(",");if(a>0){while(a>=0){d=c.substring(0,a);this.addToStoreArray(d);c=c.substring(a+1,b);b=c.length;a=c.indexOf(",")}d=c;this.addToStoreArray(d)}else{if(b>0){this.addToStoreArray(c)}}}return this.storeArray},isAddOneStoreIdExceedMax:function(){var a=false;if((this.getNumStores()+1)>this.arrayMaxSize){a=true}return a},setStoreIdsToCookie:function(){var a="";for(i=0;i<this.storeArray.length;i++){a=a+this.storeArray[i];if(i<(this.storeArray.length-1)){a=a+","}}if(a.length==0){dojo.cookie("WC_physicalStores",null,{expires:-1})}else{dojo.cookie("WC_physicalStores",a,{expires:365})}},addToStoreArray:function(a){if(this.storeArray==null){this.getStoreIdsFromCookie()}for(i=0;i<this.storeArray.length;i++){if(this.storeArray[i]==a){return}}if(this.storeArray.length<this.arrayMaxSize){this.storeArray.push(a)}},addToCookie:function(a){this.addToStoreArray(a);this.setStoreIdsToCookie()},removeFromStoreArray:function(a){if(this.storeArray==null){this.getStoreIdsFromCookie()}var b=-1;for(i=0;i<this.storeArray.length;i++){if(this.storeArray[i]==a){b=i;i=this.storeArray.length}}this.storeArray.splice(b,1)},removeFromCookie:function(a){this.removeFromStoreArray(a);this.setStoreIdsToCookie()},clearStoreArray:function(){this.storeArray=new Array},clearCookie:function(){this.clearStoreArray();this.setStoreIdsToCookie()},getNumStores:function(){if(this.storeArray==null){this.getStoreIdsFromCookie()}return this.storeArray.length},getPickUpStoreIdFromCookie:function(){var a=dojo.cookie("WC_pickUpStore");return a},setPickUpStoreIdToCookie:function(b){var c=b;if(c!=null&&c!="undefined"&&c!=""){var a=this.getPickUpStoreIdFromCookie();if(c!=a){dojo.cookie("WC_pickUpStore",null,{expires:-1});dojo.cookie("WC_pickUpStore",c,{expires:365})}}},clearPickUpStoreIdFromCookie:function(b){var c=b;if(c!=null&&c!="undefined"&&c!=""){var a=this.getPickUpStoreIdFromCookie();if(c==a){dojo.cookie("WC_pickUpStore",null,{expires:-1})}}},getValueFromCookie:function(b){var a=dojo.cookie(b);return a},setValueToCookie:function(d,c){var b=c;if(b!=null&&b!="undefined"&&b!=""){var a=this.getValueFromCookie(d);if(b!=a){dojo.cookie(d,null,{expires:-1});dojo.cookie(d,b,{expires:365})}}},clearValueFromCookie:function(b){var a=this.getValueFromCookie(b);if(a!=null&&a!="undefined"){dojo.cookie(b,null,{expires:-1})}}};
