var hlink = new hlink();
function hlink(){
  window.onload = link;
	
  function link(){
		var body = document.body;

		var url= new Array();
		url["base"] = "http://www.pedigreequery.com/index.php?query_type=check&search_bar=horse&g=5&inbred=Standard&x2=n&h=";
		url["umasql"] = "http://db.netkeiba.com/index.php?pid=db_list&word=";
		url["racingpost"] = "http://www.racingpost.co.uk/horses/search_results.sd?searchtext=";
		
    body.innerHTML = body.innerHTML.
		                 replace(/\[\[umasql\|(.+?)\]\]/gi, '<a href="' + url["umasql"] + '$1">$1</a>').
										 replace(/\[\[racingpost\|(.+?)\]\]/gi, '<a href="' + url["racingpost"] + '$1">$1</a>').
										 replace(/\[\[(.+?)\]\]/gi, '<a href="' + url["base"] + '$1">$1</a>');
  }
}