function disableLink(link) {
	style = link.style;
	style.textDecoration = "none";
	style.color = "black";
	style.fontWeight = "bold";
}

function removeSelfLink() {
	links = document.links;
	myURL = document.URL;
	/* document.write(myURL); */
	for (it in links) {
		/* document.write(links[it].href); */
		if (links[it].href == myURL) {
			disableLink(links[it]);
		}	
	}
}

removeSelfLink();
