
var blogquotes_decode = function (utftext) {
		utftext = unescape(utftext);
		var string = "";
		var i = 0;
		var c = c1 = c2 = 0;
 
		while ( i < utftext.length ) {
 
			c = utftext.charCodeAt(i);
 
			if (c < 128) {
				string += String.fromCharCode(c);
				i++;
			}
			else if((c > 191) && (c < 224)) {
				c2 = utftext.charCodeAt(i+1);
				string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
				i += 2;
			}
			else {
				c2 = utftext.charCodeAt(i+1);
				c3 = utftext.charCodeAt(i+2);
				string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
				i += 3;
			}
 
		}
		return string;
	};
document.write('<div class=quoteContainer><div class=quote>');
document.write(blogquotes_decode('Computers%20are%20getting%20smarter%20all%20the%20time.%20%20Scientists%20tell%20us%20that%20soon%20they%20will%20be%20able%20to%20talk%20to%20us.%20%20%28And%20by%20%27they%27%2C%20I%20mean%20%27computers%27.%20%20I%20doubt%20scientists%20will%20ever%20be%20able%20to%20talk%20to%20us.%29'));
document.write('</div><div class=quoteauthor style=\"float:right;\"> -');
document.write(blogquotes_decode('Dave%20Berry'));
document.write('</div></div>');
