// 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 Michael Aw - 2004 Milken Family Foundation National Educator Award

Michael Aw - 2004 Milken Family Foundation National Educator Award

'); document.write('Class Year: '); document.write(URLDecode('2002')); document.write('
'); document.write('Degree/Program: '); document.write(URLDecode('M%2EEd%2E+Curriculum+and+Instruction%3A+Integrated+Teaching+Through+the+Arts')); document.write('
'); document.write('Biography: '); document.write(URLDecode('%22I%27ve+always+enjoyed+teaching+but+after+completing+Lesley%27s+programs+I%27m+much+more+comfortable+with+utilizing+all+of+the+arts+in+my+teaching%2C%22+says+Michael%2E+%22Whether+it%27s+integrating+storytelling+into+a+math+lesson+or+breaking+out+into+song+during+a+reading+lesson%2C+the+program+has+made+me+a+better+overall+teacher%2E%22')); document.write('
'); document.write('
');