"&": "&",
"<": "<",
">": ">",
"'": ''',
'"': '"'
};
String.prototype.escapeHtml = function () {
return this.replace(/[&<>]/g, function (c) {
-