public String filterHtml(String value)
{
value = value.replaceAll("&","&");
value = value.replaceAll("<","<");
value = value.replaceAll(">",">");
value = value.replaceAll(" "," ");
value = value.replaceAll("'","'");
value = value.replaceAll("/"",""");
value = value.replaceAll("'","<br>");
return value;
}