// 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.replace(stRegExp, ""); return text2; } document.write("

Spotlight:

"); document.write('photo of Dan Simone'); document.write('

Dan Simone

'); if (document.title != "Asset Tracking Index") { document.write('Title: '); document.write(URLDecode('Adjunct+Faculty')); document.write('
'); document.write('Department: '); document.write(URLDecode('Faculty%2C+Counseling+Psychology')); document.write('
'); document.write('Biography: '); document.write(URLDecode('Currently+a+high+school+guidance+counselor%2C+Dan+discovered+Lesley%27s+program+thanks+to+a+high+school+student+%2D+his+sister%2E+%22I+was+so+impressed+with+the+school+when+I+brought+her+here+for+an+undergraduate+Open+House+event%2C+I+thought+I%27d+check+out+their+graduate+programs%2E+Turns+out+that+Lesley+had+everything+I+was+looking+for%2E%22%3Cbr%3E%0ADan%27s+program+at+Lesley+enabled+him+to+become+both+a+Licensed+Mental+Health+Counselor+working+in+private+psychotherapy+practice%2C+as+well+as+a+school+counselor%2E+%22I+think+the+background+and+training+Lesley+provides+is+superior%2C+and+the+program%27s+emphasis+on+self+and+self%2Dreflection+makes+you+a+better+therapist%2C%22+he+says%2E%3Cbr%3E%0A%3Cbr%3E%0ADan+credits+Lesley%27s+professors+for+the+significant+interest+they+took%2C+and+contributions+they+made%2C+in+forming+his+professional+identity%2E+Dan+himself+is+now+helping+do+the+same+for+others%2C+including+teaching+Psychoeducational+Approaches+to+Counseling+and+Prevention+in+Lesley%27s+graduate+program%2C+and+working+with+graduate+interns%2E')); document.write('
'); } else { document.write('# 543
'); }