// 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 Kathy Shek

Kathy Shek

'); document.write('Degree/Program: '); document.write(URLDecode('M%2EA%2E+Intercultural+Relations')); document.write('
'); document.write('Biography: '); document.write(URLDecode('What+makes+Lesley%27s+program+special%3F+Kathy%27s+answer+is+a+common+refrain%3B+%22The+people%2E%22+%3Cbr%3E%0A%3Cbr%3E%0AA+native+of+the+San+Francisco+Bay+area%2C+Kathy+traveled+across+country+to+Lesley+because+she+was+attracted+by+the+practical+focus+of+the+Intercultural+Relations+program+and+the+learning+opportunities+Boston+provides%2E+Yet+when+asked+what+she+liked+most+about+the+program%2C+Kathy+didn%27t+hesitate+in+responding%2C+%22The+people%2E+They+are+extraordinary+individuals+with+varied+backgrounds+and+unique+experiences+and+perspectives+that+make+the+learning+environment+at+Lesley+that+much+richer%2E%22+Kathy+intends+to+bring+the+knowledge+she%27s+gained+to+a+career+in+international+student+advising%2E')); document.write('
'); document.write('
');