//Copyright 2007, Howling Dynamo, Inc. or its suppliers. All Rights Reserved. http://www.hdyn.com/wr/common/contact.php?addr=pr
var c_yrSecs=31557600;
function buildExpiry(_1){
if(_1==0){
return "";
}
var d=new Date();
if(_1>-c_yrSecs&&_1<c_yrSecs){
d.setTime(d.getTime()+_1*1000);
}else{
d.setUTCFullYear(d.getFullYear()+_1/c_yrSecs);
}
var _3=d.toGMTString();
return "expires="+_3;
}
function readCookie(_4){
var _5=document.cookie.toString();
if(_4==""||_5==""){
return "";
}
var _6=_5.split(/;[ ]?/);
for(var i=0;i<_6.length;++i){
var _8=_6[i].split("=");
if(_8.length==2&&_8[0]==_4){
return decodeURIComponent(_8[1]);
}
}
return "";
}
function writeCookie(_9,_a,_b){
if(isNaN(_b)&&_b.indexOf("y")==0){
_b=_b.substr(1)*c_yrSecs;
}
document.cookie=_9+"="+encodeURIComponent(_a.toString())+"; path=/"+"; "+buildExpiry(_b);
}
