// 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 Tony Wilbur

Tony Wilbur

'); document.write('Degree/Program: '); document.write(URLDecode('M%2EA%2E+Intercultural+Relations')); document.write('
'); document.write('Biography: '); document.write(URLDecode('Can+a+graduate+program+feel+like+family%3F+That%27s+how+Tony+describes%3Cbr%3E%0ALesley%27s+Intercultural+Relations+program%2E%3Cbr%3E%0A+%3Cbr%3E%0A%22There+is+a+tremendous+amount+of+support+from+faculty+and+peers+%2D%2D+like+a%3Cbr%3E%0Asecond+family%2C%22+says+Tony%2E+And+like+a+family%2C+he+enjoys+how+%22every+class%3Cbr%3E%0Apushes+me+outside+my+comfort+zone%2C+and+makes+me+consider+new+ideas%2C+so+I%3Cbr%3E%0Areally+do+look+forward+to+going+to+every+class%2E%22%3Cbr%3E%0A+%3Cbr%3E%0ATony+also+chose+Lesley%27s+program+because+it+had+a+concentration+in+study%3Cbr%3E%0Aabroad%2Fstudent+exchange+and+because+he+knew+that+Boston+would+provide+plenty%3Cbr%3E%0Aof+opportunities+for+work+in+the+field%2E+%22All+of+the+learning+is+very+hands%3Cbr%3E%0Aon%2C+which+is+great+because+you+gain+an+understanding+of+the+good+and+bad%3Cbr%3E%0Aparts+of+working+in+an+office+or+for+a+program+provider%2E+It%27s+realistic+and%3Cbr%3E%0Apractical%2E+That%27s+all+part+of+what+makes+this+program+wonderful%2E%22')); document.write('
'); document.write('
');