// 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 Lynn Donohue

Lynn Donohue

'); document.write('Class Year: '); document.write(URLDecode('2005')); document.write('
'); document.write('Degree/Program: '); document.write(URLDecode('Individually+Designed+Bachelor%27s+Program')); document.write('
'); document.write('Biography: '); document.write(URLDecode('Lynn+was+able+to+not+only+change+her+own+life%2C+but+now+she%27s+in+the+business+of+helping+other+people+change+theirs%2E+%3Cbr%3E%0A%3Cbr%3E%0AAfter+a+rocky+start+in+her+early+life%2C+Lynn+turned+to+a+training+program+for+women+who+want+to+work+in+construction%2E+He+love+for+the+work+eventually+led+her+to+start+her+own+construction+company%2E+She+later+sold++the+multi%2Dmillion+dollar+business+to+found+Brick+by+Brick%2C+a+community+organization+that+helps+foster+creativity+in+teenagers+and+assists+adults+with+personal+and+professional+development%2E+%3Cbr%3E%0A%3Cbr%3E%0AAt+Brick+by+Brick+Lynn+has+always+stressed+education%2C+telling+kids+that+college+is+a+great+leveler%2C+regardless+of+their+background%2E+She+began+to+feel+that+she%2C+too%2C+needed+to+return+to+school+and+at+the+age+of+45%2C+she+set+the+goal+of+attending+college%2E+%3Cbr%3E%0A%3Cbr%3E%0ATaking+advantage+of+the+Learning+Community+Bachelor%27s+program%27s+generous+credit+policy+for+life+experience%2C+Lynn+returned+to+school+and+received+her+B%2EA%2E+Lynn+is+currently+pursuing+her+Master%27s+degree+through+Lesley%27s+Independent+Study+program%2E+%22I%27ve+found+my+home%2C%22+Lynn+says%2E+A+home+where+Lynn+will+learn+how+to+help+others+even+more%2E')); document.write('
'); document.write('
');