function Cookie(d){this.name=d;this.value='';this.days='';this.build=createCookie;this.reader=readCookie;this.remove=deleteCookie;function createCookie(){if(this.days){var a=new Date();a.setTime(a.getTime()+(this.days*24*60*60*1000));var b="; expires="+a.toGMTString()}else{var b=''}document.cookie=this.name+"="+this.value+b+"; path=/"}function readCookie(){var a=document.cookie.split(';');var b=this.name+"=";for(var i=0;i<a.length;i++){var c=a[i];while(c.charAt(0)==' ')c=c.substring(1,c.length);if(c.indexOf(b)==0)return c.substring(b.length,c.length)}return null}function deleteCookie(a){createCookie(this.name,"",-1)}}