<!--//
var ALIAS = "";
var PASSWORD = "";
var GROUPS = "";
var ROLE = "";
var RANK = "";
var BANNER = "Improve your quality of life,<br>Invest in your health and well-being! ";
cookies = document.cookie.split("; ");
for(z=0;z<cookies.length;z++){
cookie = cookies[z].split("=");
if (cookie[0] == 'ALIAS'){ALIAS = replaceChars(cookie[1]);}
if (cookie[0] == 'PASSWORD'){PASSWORD = replaceChars(cookie[1]);}
if (cookie[0] == 'GROUPS'){GROUPS = replaceChars(cookie[1]);}
if (cookie[0] == 'ROLE'){ROLE = replaceChars(cookie[1]);}
if (cookie[0] == 'RANK'){ROLE = replaceChars(cookie[1]);}
}
function replaceChars(entry) {
out = "+"; // replace this
add = " "; // with this
temp = "" + entry; // temporary holder
while (temp.indexOf(out)>-1) {
pos= temp.indexOf(out);
temp = "" + (temp.substring(0, pos) + add + 
temp.substring((pos + out.length), temp.length));
}
return temp;
}
//-->

