// 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 Abigail Pepin

Abigail Pepin

'); document.write('Class Year: '); document.write(URLDecode('2005')); document.write('
'); document.write('Degree/Program: '); document.write(URLDecode('M%2EEd%2E+Teacher+of+Visual+Art')); document.write('
'); document.write('Biography: '); document.write(URLDecode('At+Lesley%2C+Abby+found+that+she+was+able+to+pursue+both+her+passions+in+one+excellent+program%2E+%3Cbr%3E%0A%3Cbr%3E%0AAs+an+undergraduate%2C+Abby+pursued+degrees+in+both+art+and+education%2E+Upon+graduation%2C+she+taught+in+several+elementary+classrooms+before+enrolling+at+Lesley+to+get+her+Master%27s+in+Art+Education%2E+%3Cbr%3E%0A%3Cbr%3E%0AAbby+says%2C+%22The+courses+at+Lesley+were+totally+different+from+the+education+courses+I+took+in+my+undergraduate+program%2E%22+She+was+also+able+to+get+experience+in+an+art+classroom+during+several+practica+at+local+schools%2E%3Cbr%3E%0A%3Cbr%3E%0AAbby+currently+teaches+art+for+the+Cambridge+Public+Schools+where+she+is+excited+to+work+with+its+diverse+student+population%2E')); document.write('
'); document.write('
');