// This function decodes any string // that's been encoded using URL encoding technique function URLDecode(psEncodeString) { // Create a regular expression to search all +s in the string var lsRegExp = /\+/g; // everything after a line break // var brRegExp = /%3Cbr%3E.*$/mg; // tags //var stRegExp = /<\/?strong>/gi; // Return the decoded string //var text1 = String(psEncodeString).replace(brRegExp, ""); var text1 = String(psEncodeString); var text2 = unescape(text1.replace(lsRegExp, " ")); return text2; } document.write("
"); document.write(''); document.write('
photo of Julia Byers

Julia Byers

'); document.write('Title: '); document.write(URLDecode('Division+Director')); document.write('
'); document.write('Department: '); document.write(URLDecode('Expressive+Therapies')); document.write('
'); document.write('Biography: '); document.write(URLDecode('%22Lesley%27s+Expressive+Therapies+program+is+the+collective+vision+of+many+inspired+and+inspiring+people%2E%22%3Cbr%3E%0A%3Cbr%3E%0A%22I+was+drawn+here+because+there+is+a+conviction+that+not+only+do+the+arts+matter%2C+but+they+are+celebrated+in+educational+training+programs%2C%22+says+Dr%2E+Byers%2E+%22I+feel+privileged+to+work+with+such+dedicated+colleagues%2C+helping+to+empower+students+to+work+creatively+with+people+from+all+socioeconomic+levels+and+in+multiple+settings%2E+Expressive+Therapies+offers+a+broad+array+of+integrative+treatment+approaches+which+ultimately+help+people+create+meaning+in+their+lives+and+achieve+emotional%2C+physical%2C+and+psychological+balance%2E%22%3Cbr%3E%0A')); document.write('
'); document.write('
');