// 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 Dorothy Wright-Irwin

Dorothy Wright-Irwin

'); document.write('Class Year: '); document.write(URLDecode('2004')); document.write('
'); document.write('Degree/Program: '); document.write(URLDecode('Individually+Designed+Bachelor%27s+Program')); document.write('
'); document.write('Biography: '); document.write(URLDecode('Dot+was+a+pharmacy+technician+for+20+years+before+being+able+to+fulfill+her+lifelong+dream+of+completing+her+college+degree%2E+%3Cbr%3E%0A%3Cbr%3E%0ADot+wanted+a+program+that+would+allow+her+to+make+the+shift+from+traditional+medicine+to+alternative+therapies%2E+%22After+attending+the+Learning+Community+Bachelor%27s+Open+House%2C+I+knew+this+was+the+program+I+had+long+been+searching+for%2C%22+she+says%2E+%3Cbr%3E%0A%3Cbr%3E%0ASince+she+would+be+working+and+going+to+school+full%2Dtime%2C+she+felt+that+the+LCB+program+would+best+fit+her+schedule+and+allow+her+to+self%2Ddesign+a+degree+in+Healing+Arts%2E+%3Cbr%3E%0A%3Cbr%3E%0ADot+was+able+to+directly+apply+what+she+learned+in+her+studies+on+touch+and+music+therapy+to+her+ill+mother%2E+Within+three+weeks+she+saw+significant+improvement+in+her+mother%27s+health%2E+Dot+says%2C+%22my+mother+was+my+inspiration+for+my+new+found+career%3A+%27Care+with+Compassion%2C%27+bringing+alternative+therapies+to+the+elderly%2C+the+ill%2C+and+the+dying%2E%22')); document.write('
'); document.write('
');