// 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 Nancy Tom

Nancy Tom

'); document.write('Class Year: '); document.write(URLDecode('2007')); document.write('
'); document.write('Degree/Program: '); document.write(URLDecode('M%2EA%2E+Intercultural+Relations')); document.write('
'); document.write('Biography: '); document.write(URLDecode('Thanks+to+Lesley%27s+unique+Master%27s+program%2C+Nancy%27s+dream+goal+is+well+within+reach%2E%3Cbr%3E%0A%3Cbr%3E%0A%22The+program+was+life%2Dchanging+for+me%2C%22+says+Nancy%2E+%22It+gave+me+the+flexibility+to+combine+my+passions+for+diversity%2C+travel+and+cultural+knowledge+to+achieve+a+new+dream+goal+of+becoming+a+diversity+trainer%2E%22+Just+as+satisfying+for+Nancy+has+been+the+personal+impact+of+the+program%2E+%22I+have+met+lifelong+friends+that+I+will+be+able+to+visit+in+every+corner+of+the+world+and+I+have+a+new+appreciation+for+this+world+and+its+rich+ethnic+diversity%2E%22')); document.write('
'); document.write('
');