// 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 Andrea Bellomo

Andrea Bellomo

'); document.write('Class Year: '); document.write(URLDecode('2005')); document.write('
'); document.write('Degree/Program: '); document.write(URLDecode('M%2EEd%2E+Individually%2DDesigned+Program')); document.write('
'); document.write('Biography: '); document.write(URLDecode('Andrea+discovered+Lesley%27s+Individually%2DDesigned+Program+which+enabled+her+to+pursue+a+Master%27s+in+Education+without+having+to+focus+on+licensure%2E+She+valued+that+her+professors+took+her+ideas+and+goals+for+her+future+seriously%2E+%22The+were+all+artist%2Feducators%2C+which+made+me+feel+like+I+was+constantly+being+surrounded+by+experienced+people+who+care+about+this+field+and+about+changing+how+education+is+viewed+in+our+culture%2E%22%3Cbr%3E%0A%3Cbr%3E%0AAndrea+says+%22I+have+not+stopped+using+what+I+learned+in+the+program+since+the+day+I+began+it%2E++I+am+now+teaching+at+an+after%2Dschool+program%2C+and+I+have+complete+control+over+developing+the+curriculum+for+my+students%2E%22%3Cbr%3E%0A')); document.write('
'); document.write('
');