// 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 Robin Welch - 2005 MA Elementary School Principal of the Year

Robin Welch - 2005 MA Elementary School Principal of the Year

'); document.write('Class Year: '); document.write(URLDecode('1984')); document.write('
'); document.write('Degree/Program: '); document.write(URLDecode('M%2EEd%2E+in+Educational+Technology')); document.write('
'); document.write('Biography: '); document.write(URLDecode('Robin+Welch+believes+his+Lesley+degree+helped+him+rise+from+teacher+to+technical+specialist+to+vice+principal%2C+and+then+principal+of+several+schools%2E+%22The+educational+technology+background+has+been+crucial+in+advancing+my+career+because+every+school+faces+technology+challenges%2E%22+In+May+2005%2C+Robin+was+named+Elementary+School+Principal+of+the+Year+by+the+Massachusetts+Department+of+Education+in+conjunction+with+the+Massachusetts+Elementary+School+Principals+Association%2E')); document.write('
'); document.write('
');