// 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 Susan Gere

Susan Gere

'); document.write('Title: '); document.write(URLDecode('Division+Director')); document.write('
'); document.write('Department: '); document.write(URLDecode('Counseling+Psychology')); document.write('
'); document.write('Biography: '); document.write(URLDecode('%22There+is+a+spirit+of+engagement+and+connection+with+the+human+experience+throughout+our+program%2E%22%3Cbr%3E%0A+%3Cbr%3E%0AAsk+Susan+Gere+what+she+likes+best+about+Lesley%27s+Counseling+Psychology+Program+and+she+doesn%27t+hesitate+in+responding+%22the+work+is+imbued+with+meaning+at+every+level%2E%22+As+an+Associate+Professor%2C+the+Division+Director%2C+and+the+Director+of+Lesley%27s+Institute+for+Body%2C+Mind+and+Spirituality%2C+Susan+says+she+gets+to+work+with+%22outstanding+colleagues+and+students%2E%22+She+also+consults+to+community+agencies+on+developmental+issues%2C+trauma+recovery%2C+and+family+life%2E+%22Using+my+own+experiences+with+clients%2C+other+professionals%2C+and+agencies+helps+my+students+become+oriented+to+the+reality+of+their+professional+milieu%2E%22')); document.write('
'); document.write('
');