// 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 Francesca Ricci

Francesca Ricci

'); 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('For+a+working+mother+like+Francesca%2C+Lesley%27s+Learning+Community+Bachelor%27s+program+is+perfect%2E+%3Cbr%3E%0A%3Cbr%3E%0AA+single+mother+of+two+boys%2C+Francesca+found+that+Lesley%27s+Learning+Community+Bachelor%27s+program+met+her+need+for+flexibility%2E+Throughout+her+tenure+as+a+student%2C+Francesca+was+able+to+work+full%2Dtime+and+remain+at+home+for+her+studies%2E+%3Cbr%3E%0A%3Cbr%3E%0AWhile+it+has+been+a+real+benefit+to+her+as+a+mother%2C+she+is+quick+to+add+that+the+program%27s+week%2Dlong+residencies+have+provided+her+with+a+welcome+break+from+everyday+life+as+well+as+the+opportunity+to+engage+in+intense+study%2C+interact+with+peers%2C+and+take+time+to+reflect%2E')); document.write('
'); document.write('
');