// 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 Shunsuke Kanazawa

Shunsuke Kanazawa

'); document.write('Degree/Program: '); document.write(URLDecode('M%2EA%2E+Intercultural+Relations%2C+%2708')); document.write('
'); document.write('Biography: '); document.write(URLDecode('At+Lesley%2C+Shunsuke+discovered+many+people+who+shared+his+goal+of%3Cbr%3E%0Amaking+the+world+a+better+place%2E%3Cbr%3E%0A+%3Cbr%3E%0AAfter+hearing+very+positive+things+about+Lesley+from+a+friend+in+the%3Cbr%3E%0ACounseling+Psychology+program%2C+Shunsuke+decided+to+enroll+in+Lesley%27s+Intercultural+Relations+program%2E+%22My+peers+in+the+program+share+my+interests+and+are+very+friendly%2E+I+also+like+the+fact+that+my+class+sizes+are+smaller+than+those+at+most+other+grad+schools+in+Boston%2C%22+he+says%2E%3Cbr%3E%0A+%3Cbr%3E%0AWith+plans+to+become+an+international+student+advisor%2C+Shunsuke+appreciates+the+enthusiastic+class+discussions+and+open%2Dminded+philosophy+of+the%3Cbr%3E%0Aprogram%2E+%22Too+often+people+are+close%2Dminded+which+prevents+them+from+enjoying+some+truly+wonderful+things+about+our+world%2E+This+program+has+taught+me+that+by+embracing+differences%2C+we+are+so+much+more+capable+of+meeting+the+challenges+that+face+us%2E%22')); document.write('
'); document.write('
');