// 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 Carla Kimball

Carla Kimball

'); document.write('Class Year: '); document.write(URLDecode('2007')); document.write('
'); document.write('Degree/Program: '); document.write(URLDecode('Advanced+Professional+Certificate+in+Creativity%2C+Imagination+and+Leadership')); document.write('
'); document.write('Biography: '); document.write(URLDecode('What%27s+fun+about+what+I+do+is+that+I+get+to+utilize+much+of+my+education+while+helping+people+overcome+a+fear+of+public+speaking%2C+which+is+often+holding+back+their+careers%2C+says+Carla%2E%3Cbr%3E%0A%3Cbr%3E%0AIn+addition+to+an+MBA+degree%2C+Carla+had+also+earned+her+Master%27s+in+Counseling+Psychology+with+a+specialization+in+Expressive+Therapies+at+Lesley%2E+%22But+I+wasn%27t+interested+in+becoming+a+therapist%2C%22+she+says%2E+Instead%2C+she+became+a+yoga+instructor%2C+which+lead+her+to+focus+on+stress+management%2C+which+lead+her+to+her+to+start+her+own+business+%28www%2Eriverways%2Ecom%29%2C+as+a+public+speaking+coach+for+individuals+and+organizations+%22since+speaking+is+a+big+stress+creator+for+many+people%2E%22+Carla+earned+Lesley%27s+Advanced+Professional+Certificate+in+Creativity%2C+Imagination+and+Leadership%2C+which+she+focused+on+the+concept+of+presence%2E+%22How+people+inhabit+their+bodies+when+they+speak+has+a+very+strong+impact+on+the+impression+they+make+with+their+audience%2E+Lesley%27s+APC+program+helped+me+to+acquire+additional+skills+and+knowledge+that+will+enhance+my+ability%2C+as+well+as+my+clients%27+to+excel+professionally%2E%22')); document.write('
'); document.write('
');