// 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 Jay Jones

Jay Jones

'); document.write('Title: '); document.write(URLDecode('Associate+Professor')); document.write('
'); document.write('Department: '); document.write(URLDecode('Intercultural+Relations')); document.write('
'); document.write('Biography: '); document.write(URLDecode('Jay+Jones+believes+it+is+critical+to+understand+how+culture+influences+human+interaction%2E+%3Cbr%3E%0A%3Cbr%3E%0AJay+Jones+and+his+students+examine+how+culture%2C+along+with+other+structural+and+societal+features%2C+influences+our+expectations+about+human+interactions%2C+such+as+negotiation%2E+A+background+in+economics+informs+Jones%27+courses+in+the+areas+of+intercultural+negotiation%2C+intercultural+research%2C+and+international+and+global+interdependence%2E+This+15%2Dyear+veteran+teacher+was+instrumental+in+the+planning%2C+execution+and+continued+success+of+Lesley%27s+master%27s+program+in+Intercultural+Relations%2E')); document.write('
'); document.write('
');