function setLMCookie(name, value) { document.cookie = name + "=" + value; } function getLMCookie(name) { foobar = document.cookie.split(name + "="); if (foobar.length < 2) { return null; } tempString = foobar[1]; if (tempString.indexOf(";") == -1) { return tempString; } yafoobar = tempString.split(";"); return yafoobar[0]; } function parseExpandString() { expandString = getLMCookie("expand"); expand = new Array(); if (expandString) { expanded = expandString.split("|"); for (i=0; i