function geber_lib_CookieClass(){this.defaultPath=""}geber_lib_CookieClass.prototype.setRaw=function(A){document.cookie=A};geber_lib_CookieClass.prototype.getRaw=function(){return document.cookie.toString()};geber_lib_CookieClass.prototype.setValue=function(C,E,A,G,D,F){var B=C+"="+escape(E)+((A)?"; expires="+A.toGMTString():"")+((G)?"; path="+G:"; path="+this.getDefaultPath())+((D)?"; domain="+D:"")+((F)?"; secure":"");this.setRaw(B)};geber_lib_CookieClass.prototype.getValue=function(C){var B=this.getRaw();if(!B){return null}var E=C+"=";var D=B.indexOf("; "+E);if(D==-1){D=B.indexOf(E);if(D!=0){return null}}else{D+=2}var A=B.indexOf(";",D);if(A==-1){A=B.length}return unescape(B.substring(D+E.length,A))};geber_lib_CookieClass.prototype.deleteValue=function(A,C,B){if(geber_getCookie(A)){this.setRaw(A+"="+((C)?"; path="+C:(this.defaultPath!=""?"; path=":"")+this.defaultPath)+((B)?"; domain="+B:"")+"; expires=Thu, 01-Jan-70 00:00:01 GMT")}};geber_lib_CookieClass.prototype.setDefaultPath=function(A){if(typeof (A)=="string"&&A.length>0){this.defaultPath=A}else{this.defaultPath=""}};geber_lib_CookieClass.prototype.getDefaultPath=function(){if(this.defaultPath&&typeof (this.defaultPath)=="string"&&this.defaultPath.length>0){return this.defaultPath}else{var A=geber_lib_getBaseURLPath();A=A.replace(new RegExp("/(de|en|fr|it|es|nl)/?$","i"),"");return A}};function geber_cookie_addCookieToBrowserObject(){try{var A=geber_getBrowser();if(A){A.cookie=new geber_lib_CookieClass()}}catch(B){}}geber_cookie_addCookieToBrowserObject()