
// This code will remove the google generated links for everything except for the maps.
// To use this code place the following between the <head> tag in your html document.


<script language="Javascript">
<!-- Colin Faulkingham 2/28/2005 -->
<!-- Licensed under the GPL -->
	document.onmousedown = function killAutoLink() {
		for (i=0; i<document.links.length; i++) {
			var re = new RegExp('google.com:80\/tbproxy+\\b');
			if(document.links[i].href.match(re)){
				document.links[i].href="";
			}
		}
	}
</script>