// 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 Jessie Auger - 2005 USA Today All-USA Teacher Team

Jessie Auger - 2005 USA Today All-USA Teacher Team

'); document.write('Class Year: '); document.write(URLDecode('1990')); document.write('
'); document.write('Degree/Program: '); document.write(URLDecode('M%2EEd%2E+in+Elementary+Education')); document.write('
'); document.write('Biography: '); document.write(URLDecode('Jessie+credits+Lesley+with+helping+her+%22gain+an+understanding+of+the+developmental+process+in+children+who+are+learning+to+read+and+write%2E+The+language+acquisition+process+is+very+important+to+understand+for+teaching+all+children%2C+particularly+in+the+U%2ES%2E%2C+where+there+will+always+be+kids+in+a+class+who+speak+a+second+language%2E%22')); document.write('
'); document.write('
');