// 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 Margery Staman Miller - faculty, author of best-selling books on literacy

Margery Staman Miller - faculty, author of best-selling books on literacy

'); document.write('Title: '); document.write(URLDecode('Division+Director+and+Professor%2C+Language+and+Literacy')); document.write('
'); document.write('Department: '); document.write(URLDecode('Division+Director%2C+Language+and+Literacy')); document.write('
'); document.write('Biography: '); document.write(URLDecode('A+leader+in+the+field+of+language+and+literacy%2C+Dr%2E+Miller+has+published+multiple+books%2C+including+the+best+seller+%3Ci%3ELiteracy+and+Learning+in+the+Content+Areas%3A+Strategies+For+Middle+and+Secondary+School+Teachers%3C%2Fi%3E%2E%3Cbr%3E%0A%3Cbr%3E%0AThroughout+her+tenure+at+Lesley%2C+Dr%2E+Margery+Staman+Miller+has+taken+on+a+variety+of+roles%2E+However%2C+the+core+of+her+work+and+her+commitment+has+always+been+focused+on+literacy%2C+particularly+on+preparing+students+to+become+reading+specialists%2E%3Cbr%3E%0A+%3Cbr%3E%0AIn+her+current+role+as+Division+Director+of+Language+and+Literacy+and+Program+Director+for+Lesley%27s+Reading+Program%2C+Margery+has+had+the+opportunity+to+work+closely+with+students+as+a+faculty+advisor%2C+mentor%2C+and+teacher%2E+She+says%2C+%22I+am+particularly+proud+of+the+preparation+our+students+receive%2E+They+take+their+literacy+expertise%2C+which+has+been+honed+through+their+coursework+and+practica%2C+to+their+roles+as+classroom+teachers%2C+content+area+teachers%2C+reading+specialists%2C+and+literacy+coaches%2C+positively+impacting+children%2C+colleagues%2C+and+administrators+in+the+schools+where+they+work%2E%22%3Cbr%3E%0A+%3Cbr%3E%0AMargery+holds+a+Ph%2ED%2E+from+the+University+of+Pennsylvania%2E')); document.write('
'); document.write('
');