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

Taddy Sims - 2005 South Carolina District Teacher of the Year

'); document.write('Class Year: '); document.write(URLDecode('2003')); document.write('
'); document.write('Degree/Program: '); document.write(URLDecode('M%2EEd%2E+Integrated+Teaching+Through+the+Arts')); document.write('
'); document.write('Biography: '); document.write(URLDecode('A+first+grade+teacher+at+Johnsonville+Elementary+School+in+South+Carolina%2C+Taddy+was+awarded+District+Teacher+of+the+Year+in+2005%2E+Taddy+is+listed+in+Who%27s+Who+among+American+Teachers%2E+%22Lesley+gave+me+a+new+approach+to+teaching%2E+Now+I+incorporate+music%2C+art+and+other+aspects+of+Lesley%27s+program+into+my+classroom%2C%22+she+says%2E')); document.write('
'); document.write('
');