// 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 Robert Shreefter

Robert Shreefter

'); document.write('Title: '); document.write(URLDecode('Associate+Professor')); document.write('
'); document.write('Department: '); document.write(URLDecode('Creative+Arts+in+Learning')); document.write('
'); document.write('Biography: '); document.write(URLDecode('With+a+background+as+an+English+professor%2C+artist%2C+and+teacher%2C+Robert+Shreefter+lends+a+wealth+of+riches+to+the+Creative+Arts+in+Learning+Program%2E+Before+earning+his+MFA+with+a+concentration+on+painting+and+printmaking%2C+Shreefter+taught+college+English+for+13+years%2E++He+ultimately+combined+his+interest+in+the+visual+arts+with+his+interest+in+the+language+arts+and+studied+bookmaking+at+Penland+School+in+North+Carolina%2E+As+an+artist%2Din%2Dresidence+at+Homerton+College%2C+the+teacher+college+at+England%27s+Cambridge+University%2C+he+worked+with+graduate+and+undergraduate+specialists+in+integrating+bookmaking+into+their+teaching+practice%2E+He+has+also+done+extensive+work+with+children+in+schools+as+a+special+art+and+literacy+resources+teacher+and+as+an+artist%2Din%2Dresidence%2E+%3Cbr%3E%0A%3Cbr%3E%0AIn+addition+to+his+CAL+courses%2C+Shreefter+teaches+studio+art+and+art+education+courses+at+the+Art+Institute+of+Boston%2C+Mass+Art%2C+Art+New+England%2C+and+the+Harvard+Graduate+School+of+Education%2E+He+exhibits+his+paintings%2C+prints+and+books+at+university+and+commercial+galleries+and+is+a+member+of+the+Experimental+Etching+Studio%2E%3Cbr%3E%0A%3Cbr%3E%0AShreefter+earned+a+M%2EF%2EA%2E+from+the+University+of+North+Carolina%2C+a+M%2EA%2E+from+the+University+of+Wisconsin+and+a+B%2EA%2E+from+New+York%27s+City+College%2E')); document.write('
'); document.write('
');