// 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 Dr. Jo-Anne Hart -

Dr. Jo-Anne Hart -

'); document.write('Title: '); document.write(URLDecode('Associate+Professor')); document.write('
'); document.write('Department: '); document.write(URLDecode('Technology+in+Education%2C+School+of+Education')); document.write('
'); document.write('Biography: '); document.write(URLDecode('A+faculty+member+in+Lesley%27s+Technology+in+Education+program%2C+Dr%2E+Hart+created+2004+Presidential+election+teaching+materials+that+were+used+by+teachers+in+all+50+states%2E+She+earned+her+Ph%2ED%2E+in+Political+Science+from+New+York+University%2E')); document.write('
'); document.write('
');