// 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 Rebecca Norstrom

Rebecca Norstrom

'); document.write('Degree/Program: '); document.write(URLDecode('M%2EA%2E+Intercultural+Relations')); document.write('
'); document.write('Biography: '); document.write(URLDecode('Although+she%27d+traveled+extensively+throughout+South+America+already%2C+Rebecca+says+Lesley%27s+program+%22really+opened+my+eyes%2E%22+%3Cbr%3E%0A%3Cbr%3E%0AAn+undergraduate+study+abroad+experience+in+Ecuador+%22had+a+profound+impact+on+me%2C%22+says+Rebecca%2E+As+a+result+she+spent+a+year+traveling+throughout+that+country+as+well+as+Peru%2C+Bolivia%2C+and+Chile%2C+spending+some+of+her+time+teaching+English%2E+When+she+returned+to+the+states%2C+Rebecca+took+a+job+designing+educational+tours+for++middle%2D+and+high+school+students%2C+then+transitioned+to+a+position+where+she+helped+create+academic+programs+for+high+school+teachers+in+Spain+and+Argentina%2E+All+of+these+experiences+inspired+Rebecca+to+earn+a+Master%27s+that+would+help+her+foster+better+awareness+and+understanding+of+cultural+differences%2E+%22The+program+has+really+opened+my+eyes+to+the+injustices+in+the+world+and+has+given+me+the+tools+and+encouragement+to+change+them%2C+as+well+as+the+understanding+that+even+the+smallest+effort+matters%2E%22')); document.write('
'); document.write('
');