		var text, originalContent;
		function init() {
			var text = document.body.createTextRange();
			originalContent = text.htmlText;
		}
		
		function highlightText(term) {
	
			var newText;
			newText = document.body.createTextRange();
			newText.pasteHTML(originalContent);
			newText = document.body.createTextRange();		
			if (term != "") {
				while (newText.findText(term,1,2)) {
					newText.pasteHTML("<SPAN class=\"autoHighlightText\">" + newText.text + "</SPAN>");
				}
			}
	
		}
