// 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('At+13+years+old%2C+Michael+came+to+the+United+States+from+Burma+knowing+little+English%2E+Even+then%2C+his+commitment+to+education+was+clear%2E+He+worked+hard+in+school+and+went+on+to+become+a+teacher%2E+Like+many+teachers%2C+Michael+pursued+a+Master%27s+degree+to+become+a+more+highly+qualified+teacher+and+further+his+career+goals%2E+After+completing+Lesley%27s+Integrated+Teaching+Through+the+Arts+program+Michael+says%2C+%22I%27ve+always+enjoyed+teaching%2C+but+now+I%27m+much+more+comfortable+utilizing+all+of+the+arts+in+my+teaching%2E+Whether+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+He%27s+not+the+only+one+who+thinks+so%2E+In+2004%2C+Michael+received+the+Milken+Family+Foundation+National+Educator+Award+for+outstanding+teaching%2E')); document.write('
'); document.write('
');