<!--//
var ALIAS = "";
var PASSWORD = "";
var GROUPS = "";
cookies = document.cookie.split("; ");
for(z=0;z<cookies.length;z++){
cookie = cookies[z].split("=");
if (cookie[0] == 'ALIAS'){ALIAS = cookie[1];}
if (cookie[0] == 'SESSION'){SESSION = cookie[1];}
if (cookie[0] == 'GROUPS'){GROUPS = 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;
}
ALIAS = replaceChars(ALIAS);
GROUPS = replaceChars(GROUPS);
//-->
