// 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. Michael Kemeh

Dr. Michael Kemeh

'); document.write('Title: '); document.write(URLDecode('Assistant+Professor')); document.write('
'); document.write('Department: '); document.write(URLDecode('Creative+Arts+in+Learning%2C+Arts+and+Social+Sciences')); document.write('
'); document.write('Biography: '); document.write(URLDecode('%22I+love+sharing+my+expertise+integrating+drama+into+classroom+teaching+and+learning+with+educators%2C%22+says+Dr%2E+Michael+Kemeh%3Cbr%3E%0A%3Cbr%3E%0ADr%2E+Michael+Kemeh+has++%22facilitated+numerous+Theater+for+Development+%28Drama+for+Empowerment%29+workshops+connected+with+issues+on+health%2C+adult+literacy%2C+teen+pregnancy+and+women%27s+socio%2Deconomic+improvement%2C%22+in+inner+cities%2C+villages+and+towns+in+Ghana%2C+his+home+country%2E++He+brought+this+theatre+technique+to+the+U%2ES%2E+in+a+modified+form+when+he+left+Africa+in+1992%2C+addressing+%22multicultural+and+social+issues+through+workshops%22+in+schools+in+Washington%2C+Arizona+and+Kansas%2E%3Cbr%3E%0A%3Cbr%3E%0AMichael+graduated+from+the+University+of+Ghana%2C+Legon%2C+and+received+his+Master%27s+in+Theater%2C+and+his+Ph%2ED%2E+in+Curriculum+and+Instruction+from+Kansas+State+University%2E++He+obtained+his+Postgraduate+Certificate+in+Education+from+University+of+Leeds%2C+U%2EK%2E+where+he+taught+in+the+British+school+system+as+part+of+his+post%2Dgraduate+training%2E%3Cbr%3E%0A%3Cbr%3E%0AFor+the+past+eight+years%2C+Michael+has+been+teaching+at+Lesley+both+on+campus+and+in+Colorado%2C+Wisconsin%2C+Minnesota%2C+Maine%2C+Washington%2C+Columbia+and+Georgia%2E++He+teaches+Integrated+Arts+Approaches+in+the+Curriculum%3B+Drama+and+Critical+Literacy%3B+Educator+Inquiry%3A+Seminar+and+Project%3B+and+Drama+for+Community+Leadership%2E')); document.write('
'); document.write('
');