function TooltipUK() {
	document.getElementById("tooltip").innerHTML = "European Site.<br>All countries within<br> the European Union";
}
function TooltipCA() {
	document.getElementById("tooltip").innerHTML = "World Site.<br>All countries<br> outside Europe";
	document.getElementById("flagUK").src = "Graphics/Graphics/Flag_UK_light.gif";
	document.getElementById("flagCA").src = "Graphics/Graphics/Flag_CA.gif";
}
function TooltipClear() {
	document.getElementById("tooltip").innerHTML = "";
	document.getElementById("flagUK").src = "Graphics/Graphics/Flag_UK.gif";
	document.getElementById("flagCA").src = "Graphics/Graphics/Flag_CA_light.gif";
}
function siteLinkCA() {
	var pageLoc = window.location.toString();
	pageLoc = pageLoc.replace("co.uk", "com");
	window.location = pageLoc;
}
function siteLinkUK() {
	var pageLoc = window.location.toString();
	pageLoc = pageLoc.replace("com", "co.uk");
	window.location = pageLoc;
}
