//this script requires id to be passed to it.

function highlightEndNote(idGetElement){
	//alert("hello");
	if(window.location){
		var URL;
		URL = window.location.href;
		var x,y;
		x = URL.indexOf("#") + 1;
		//alert(x);
		var rqstAnchor;
		rqstAnchor = URL.substring(x) + "-p";
		//alert(rqstAnchor);
		if(document.getElementById){
			if(document.getElementById(rqstAnchor)){
				//IE First
				document.getElementById(rqstAnchor).setAttribute('className','fade-ffffff');
				document.getElementById(rqstAnchor).setAttribute('class','fade-ffffff');
			}
		}
		else{
		
			//alert("doesn't support getElementByID, or pres-message is blank");
			return true;
		} 
	}
	else{
		
		//alert("browser doesn't support window.location");
		return true;
	}
	//alert("exiting successfully");
	return true;
}