public static String htmlspecialchars(String str) {
		// str = str.replaceAll("&", "&");
		// str = str.replaceAll("<", "&lt;");
		// str = str.replaceAll(">", "&gt;");
		 str = str.replaceAll("<div(.*)|(.*)(
*)</div>", "");
		 str = str.replaceAll("<script(.*)|(.*)(
*)</script>", "");
		return str;
	}