<!--
function removeHtml(html) {
	if (html == null) {
		return null;
	}
	while (html.match(/<br>/i)) {
		html = html.replace(/<br>/i, "\n");
	}
	while (html.match(/&#039;/)) {
		html = html.replace(/&#039;/, "'");
	}
	while (html.match(/&#034;/)) {
		html = html.replace(/&#034;/, "\"");
	}
	var message = "";
	var inTag = false;
	var length = html.length;
	for (i=0; i<length; i++) {
		var c = html.charAt(i);
		if (c == '<') {
			inTag = true;
		} else if (c == '>') {
			inTag = false;
		} else if (!inTag) {
			message += c;
		}
	}
	return message;
}
//-->
