// 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 Dorothy Anderson

Dorothy Anderson

'); document.write('Class Year: '); document.write(URLDecode('2004')); document.write('
'); document.write('Degree/Program: '); document.write(URLDecode('C%2EA%2EG%2ES+in+Expressive+Therapies')); document.write('
'); document.write('Biography: '); document.write(URLDecode('Pursuing+Lesley%27s+CAGS+program+in+Expressive+Therapies+lead+Dorothy+to+discover+new+bonds+with+her+infant+daughter%2E+%3Cbr%3E%0A%3Cbr%3E%0AA+licensed+social+worker%2C+Dorothy+had+been+incorporating+a+number+of+expressive+therapy+modalities+in+her+clinical+practice%2C+and+opted+for+Lesley%27s+CAGS+program+as+a+way+to+further+expand+her+professional+knowledge%2E+One+of+her+favorite+projects+during+the+program+was+an+independent+study+of+the+ongoing+connection+between+herself+and+her+infant+daughter%2C+Kylie%2C+and+how+creativity+was+helping+to+foster+their+relationship%2E+%22I+would+tape+our+interactions+daily%2C+then+review+the+tapes+and+select+the+moments+that+stood+out%2E+Sometimes+they+were+moments+of+stillness%2C+other+times+of+activity%2E+I+then+tried+to+express+those+moments+through+art%2C+poetry%2C+and+in+the+culmination+of+the+project%2C+did+a+presentation+that+also+incorporated+movement%2E+I+learned+so+much+from+this+study%2C+lessons+that+transfer+easily+to+my+work+with+adolescents%2E%22')); document.write('
'); document.write('
');