Cookie={get:function(a){tmp=document.cookie.match((new RegExp(a+"=[a-zA-Z0-9.()=|%/]+($|;)","g")));if(!tmp||!tmp[0]){return null}else{return unescape(tmp[0].substring(a.length+1,tmp[0].length).replace(";",""))||null}},set:function(b,d,a,f,c,e){cookie=[b+"="+escape(d),"path="+((!f||f=="")?"/":f),"domain="+((!c||c=="")?window.location.hostname:c)];if(a){cookie.push("expires="+Cookie.hoursToExpireDate(a))}if(e){cookie.push("secure")}return document.cookie=cookie.join("; ")},unset:function(a,c,b){c=(!c||typeof c!="string")?"":c;b=(!b||typeof b!="string")?"":b;if(Cookie.get(a)){Cookie.set(a,"","Thu, 01-Jan-70 00:00:01 GMT",c,b)}},hoursToExpireDate:function(a){if(parseInt(a)=="NaN"){return""}else{now=new Date();now.setTime(now.getTime()+(parseInt(a)*60*60*1000));return now.toGMTString()}},test:function(){Cookie.set("b49f729efde9b2578ea9f00563d06e57","true");if(Cookie.get("b49f729efde9b2578ea9f00563d06e57")=="true"){Cookie.unset("b49f729efde9b2578ea9f00563d06e57");return true}return false},dump:function(){if(typeof console!="undefined"){console.log(document.cookie.split(";"))}}};
