function highlight(){
	re = /#/;
	str = document.location.hash;
	newstr = str.replace(re,"");
	var idname = "div" + newstr;
	for(i = 0; i < document.all.length; i++){
		if(document.all(i).id == idname) {
			var oBj = document.all(i);
			oBj.style.backgroundColor='#D7EBFF';
			return true;
		}
	}
	return false;
}
// for the xslt generated html
function highlight_2(){
	re = /#/;
	str = document.location.hash;
	newstr = str.replace(re,"");
	var idname = newstr;
	for(i = 0; i < document.all.length; i++){
		if(document.all(i).id == idname) {
			var oBj = document.all(i);
			oBj.style.backgroundColor='#D7EBFF';
			return true;
		}
	}
	return false;
}
