// 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 Mariagnese Cattaneo

Mariagnese Cattaneo

'); document.write('Title: '); document.write(URLDecode('Professor+and+Director+Field+Training')); document.write('
'); document.write('Department: '); document.write(URLDecode('Expressive+Therapies')); document.write('
'); document.write('Biography: '); document.write(URLDecode('As+a+teacher+in+Switzerland%2C+Cattaneo+found+that+her+kindergarten+students+were+able+to+express+themselves+through+painting%2C+drawing%2C+forming+clay%2C+and+play%2C+much+more+effectively+than+they+could+on+a+verbal+level%2E+Through+art%2C+the+children+shared+their+joys%2C+humor%2C+wishes%2C+and+dreams%2C+as+well+as+expressed+and+worked+through+their+anger%2C+pain+and+frustration%2E%3Cbr%3E%0A%3Cbr%3E%0ADrawing+on+this+experience%2C+Cattaneo+began+integrating+non%2Dverbal+expression%2C+communication%2C+and+perception+into+her+work+as+a+counselor+and+therapist%2E++%22This+was+the+beginning+of+a+profession+that%2C+at+that+time%2C+did+not+formally+exist+%2D+the+field+of+expressive+therapy%2C%22+she+says%2E++Her+pioneering+work+led+her+to+Lesley+University%2C+where+she+became+a+member+of+the+faculty+that+founded+the+Expressive+Therapies+Program%2C+one+of+the+first+graduate+programs+in+this+then+emerging+field%2E%3Cbr%3E%0A%3Cbr%3E%0AToday+Cattaneo+consciously+works+to+ensure+her+tastes%2C+values%2C+beliefs+and+cultural+background+do+not+color+her+responses+to+clients%27+works+of+art%2E++She+believes+valuing+the+subjective+experience+and+aesthetics+of+each+individual+is+essential+for+a+meaningful+and+therapeutic+relationship%2E%3Cbr%3E%0A%3Cbr%3E%0ACattaneo+is+a+Licensed+Mental+Health+Counselor%2C+A%2ET%2ER%2E+and+earned+a+Ph%2ED%2E+from+Union+Institute+and+%3Cbr%3E%0AM%2EA%2E+and+B%2EA%2E+degrees+from+the+Conservatory+Winterthur+in+Switzerland%2E')); document.write('
'); document.write('
');