function highlight(){
	var sentence = location.search.substring(1).split("&");
	if(sentence[0] == ""){
		TR = window.document.body.createTextRange(); 
		TR.execCommand("BackColor", "", "white");
		return(-1);
	}

	var wordsInSentence = sentence[0].split("%20");

	for(var iWord = 0; iWord < wordsInSentence.length; iWord++){
		TR = window.document.body.createTextRange(); 
		TR.collapse(true);
		while(TR.findText(wordsInSentence[iWord], 9999999, 0)){
			TR.execCommand("BackColor", "", "yellow");
			TR.collapse(false);
		}
	}
}





if(parent.parent.selectTopic != undefined){
	document.write("<link rel='stylesheet' type='text/css' href='../stylesheets/stylesheet+.css'/>");
}

