// 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 Cody Clare

Cody Clare

'); 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('Cody%27s+degree+is+helping+him+bring+solar+power+to+developing+countries%2E+%3Cbr%3E%0A%3Cbr%3E%0AAfter+three+semesters+%22on+the+bus%22+with+Lesley%27s+Audubon+Expedition+Institute%2C+Cody+decided+he+wanted+something+with+more+of+an+international+focus+so+he+transferred+to+the+Learning+Community+Bachelor%27s+program%2E+%3Cbr%3E%0A%3Cbr%3E%0ACody+was+pleased+about+getting+prior+learning+credit+for+his+work+experience+in+Taiwan+and+for+his+Teacher+of+English+as+a+Foreign+Language+%28TOEFL%29+class%2E+What%27s+more%2C+he+liked+that+he+could+travel+while+he+studied%2E+This+was+a+real+plus+given+that+his+thesis+project+on+the+Feasibility+of+Solar+Panels+on+the+Atlantic+Coast+of+Nicaragua+has+taken+him+to+that+country+several+times%2E+%3Cbr%3E%0A%3Cbr%3E%0AToday%2C+Cody+continues+the+work+he+began+with+his+thesis+by+helping+developing+countries+benefit+from+solar+energy%2E')); document.write('
'); document.write('
');