<!--
function suchMal(){
	var x=prompt("Please enter a word:","");
	var textbereich=document.body.createTextRange();
	if (x && textbereich.findText(x)){
		for(i=0;textbereich.findText(x)!=false;i++){
			textbereich.select();
			document.execCommand("BackColor","false","blue");
			document.execCommand("ForeColor","false","white");
			textbereich.collapse(false);
			textbereich.select();
		}		
		alert("\""+x+"\"\nwas found "+i+" times.");
	}else alert("The String was not found.");

}
//-->
