// 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 Katie Dewey-Rosenfeld

Katie Dewey-Rosenfeld

'); document.write('Degree/Program: '); document.write(URLDecode('Art+Therapy%2C+2006')); document.write('
'); document.write('Biography: '); document.write(URLDecode('%3Cstrong%3EKatie%27s+program+at+Lesley+has+helped+her+to+use+art+to+help+others%2E%3C%2Fstrong%3E%3Cbr%3E%3Cbr%3E%3Cbr%3E%0A%3Cbr%3E%0ARight+from+the+start%2C+Katie%27s+experience+at+Lesley+was+an+incredibly+rewarding+one%2E+%3Cbr%3E%0A%3Cbr%3E%0AAs+a+freshman%2C+she+interned+at+the+prestigious+Dimock+Community+Health+Center+where+she+used+a+revolutionary+clay+modeling+approach+with+children+being+screened+for+autism%2E+As+a+senior%2C+Katie+worked+with+adolescents+in+a+locked+psychiatric+ward+at+the+Franciscan+Children%27s+Hospital%2C+a+job+she+continues+today+as+she+works+on+her+Master%27s+degree+through+Lesley%27s+Accelerated+Bachelor%27s+%2FMaster%27s+program%2E+%E2%80%9CIt%27s+fascinating+to+see+the+effect+that+making+art+has+on+both+children+and+teens%2C+and+how+I+can+use+it+to+help+them+express+their+feelings%2E%E2%80%9D%3Cbr%3E%0A%3Cbr%3E%0A%3Cbr%3E%0A+%3Cbr%3E%0A')); document.write('
'); document.write('
');