// 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 Sasha Juravleva

Sasha Juravleva

'); document.write('Class Year: '); document.write(URLDecode('2005')); document.write('
'); document.write('Degree/Program: '); document.write(URLDecode('M%2EA%2E+Clinical+Mental+Health+Counseling')); document.write('
'); document.write('Biography: '); document.write(URLDecode('A+strong+holistic+studies+component+made+Lesley%27s+Counseling+and+Psychology+program+even+more+appealing+to+Sasha%2E%3Cbr%3E%0A%3Cbr%3E%0ABefore+coming+to+the+United+States+Sasha+lived+in+Russia%2C+France%2C+and+Japan%2E+It+is+in+Japan+where+she+met+a+Lesley+alum+who+told+her+about+Lesley%27s+programs+and+philosophy%2E+%3Cbr%3E%0A%3Cbr%3E%0AAs+someone+familiar+with+Asian+cultures+and+their+emphasis+on+holistic+healing%2C+Sasha+was+immediately+intrigued+by+the+holistic+studies+offered+within+the+Counseling+and+Psychology+program+at+Lesley%2E+%3Cbr%3E%0A%3Cbr%3E%0ASasha+feels+that+Lesley+has+prepared+her+well+to+work+in+a+field+that+is+gaining+in+popularity%2E+%22People+are+beginning+to+realize+that+you+can%27t+separate+the+brain+from+the+body%2C%22+she+says%2E+%22Lesley%27s+program+is+innovative+and+uses+many+different+approaches+to+the+field%2E+Thanks+to+my+education+I+feel+very+confident+in+my+skills%2E%22')); document.write('
'); document.write('
');