// 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 Lisa Kynvi

Lisa Kynvi

'); document.write('Title: '); document.write(URLDecode('Adjunct+Faculty')); document.write('
'); document.write('Department: '); document.write(URLDecode('Expressive+Therapies')); document.write('
'); document.write('Biography: '); document.write(URLDecode('%22Over+the+course+of+ten+years%2C+I+looked+into+music+therapy+programs+across+the+country%2C+searching+for+one+that+acknowledged+the+complexity+and+subtlety+of+the+human+psyche+and+spirit%2C%22+says+Lisa%2E+%22After+spending+five+minutes+with+Michele+Forinash+at+Lesley%2C+I+knew+it+was+the+right+place%2C+and+professional+field%2C+for+me%2E%22++One+of+the+things+Lisa+says+she+liked+most+about+the+program+was+its+%22emphasis+on+becoming+the+kind+of+therapist+that+fits+my+individual+personality+and+life+experience%2C+so+that+my+work+is+congruous+with+who+I+am%2E%22+Today%2C+Lisa+teaches+a+number+of+Lesley%27s+Expressive+Therapies+courses%2C+and+also+uses+her+knowledge+every+day+at+home+with+her+son+Lars%2C+who+sees+another+music+therapist%2C+Jill+Buchanan%2C+once+a+week%2E++%22For+a+little+guy+who+is+functionally+blind%2C+cognitively+impaired%2C+nonverbal+and+non%2Dambulatory%2C+music+therapy+has+helped+Lars+learn+a+tremendous+amount+about+communication%2C+relationship+and+connection%2E%22')); document.write('
'); document.write('
');