addLoadEvent(function() {
  var links = document.getElementsByTagName("a");
  var goodsitename = "http://www.clearthinking.org.uk";
  for (var i=0; i<links.length; i++) {
	  if (links[i].href.substr(0,goodsitename.length) != goodsitename) {
		links[i].onclick = function() {
          	alert("You are now departing from the regulatory site of Sound Financial Management Ltd.\nSound Financial Management Ltd is not responsible for the accuracy of the information contained within the linked site.");
         	 return true;
       }
	 }
  }
});