var _BROWSER_IS_IE=(document.all&&window.ActiveXObject&&navigator.userAgent.toLowerCase().indexOf("msie")>-1&&navigator.userAgent.toLowerCase().indexOf("opera")==-1);var _BROWSER_IS_OPERA=(navigator.userAgent.toLowerCase().indexOf("opera")!=-1);CookieManager=Class.create();CookieManager.prototype={userDataForIE:false,initialize:function(a){this.cookieShelfLife=365;this.userDataForIE=a;if(_BROWSER_IS_IE&&this.userDataForIE){this.IE_CACHE_NAME="storage";if($(this.IE_CACHE_NAME)==null){var b=document.createElement("DIV");b.id=this.IE_CACHE_NAME;document.body.appendChild(b)}this.store=$(this.IE_CACHE_NAME);this.store.style.behavior="url('#default#userData')"}},getCookie:function(d){var a=null;if(_BROWSER_IS_IE&&this.userDataForIE){this.store.load(this.IE_CACHE_NAME);a=this.store.getAttribute(d)}else{for(var c=0;c<document.cookie.split("; ").length;c++){var b=document.cookie.split("; ")[c].split("=");if(b[0]==d&&b[1]!=null){a=b[1];break}}}if(_BROWSER_IS_OPERA&&a!=null){a=a.replace(/%22/g,'"')}return a},setCookie:function(d,c){if(_BROWSER_IS_IE&&this.userDataForIE){this.store.setAttribute(d,c);this.store.save(this.IE_CACHE_NAME)}else{if(_BROWSER_IS_OPERA){c=c.replace(/"/g,"%22")}var b=new Date();b.setTime(b.getTime()+(this.cookieShelfLife*24*60*60*1000));var a="; expires="+b.toGMTString();document.cookie=d+"="+c+a+"; path=/"}},clearCookie:function(a){if(_BROWSER_IS_IE&&this.userDataForIE){this.store.load(this.IE_CACHE_NAME);this.store.removeAttribute(a);this.store.save(this.IE_CACHE_NAME)}else{document.cookie=a+"=;expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/"}}};