function setCookie(_1,_2,_3,_4,_5,_6){
var _7,_8;
if(typeof _3=="number"){
_8=new Date();
_8.setTime(_8.getTime()+(_3*24*60*60*1000));
_7=_8.toGMTString();
}
document.cookie=_1+"="+escape(_2)+((_7)?"; expires="+_7:"")+((_4)?"; path="+_4:"")+((_5)?"; domain="+_5:"")+((_6)?"; secure":"");
};
function getCookie(_9){
var _a=_9+"=";
var _b=document.cookie.split(";");
for(var i=0;i<_b.length;i++){
var c=_b[i];
while(c.charAt(0)==" "){
c=c.substring(1,c.length);
}
if(c.indexOf(_a)==0){
return unescape(c.substring(_a.length,c.length));
}
}
return null;
};
function deleteCookie(_e,_f,_10){
if(getCookie(_e)){
document.cookie=_e+"="+((_f)?"; path="+_f:"")+((_10)?"; domain="+_10:"")+"; expires=Thu, 01-Jan-70 00:00:01 GMT";
}
};

