// 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('

Debra Marinelli - 2005 Salem, NH Teacher of the Year

'); document.write('Class Year: '); document.write(URLDecode('2004')); document.write('
'); document.write('Degree/Program: '); document.write(URLDecode('Master%27s+Degree+in+Curriculum+Theory+and+Integration+of+the+Arts')); document.write('
'); document.write('Biography: '); document.write(URLDecode('First+grade+teacher+Debra+Marinelli+was+named+Salem%2C+New+Hampshire%27s+2005+Teacher+of+the+Year%2E++Debra+believes+Lesley+contributed+significantly+to+her+achieving+the+level+of+teaching+quality+for+which+she+was+recognized%2C+stating+%22The+Lesley+program+was+a+great+experience+which+boosted+my+confidence+and+provided+important+public+speaking+practice%2E%22')); document.write('
'); document.write('
');