window.onload = initAll;

function initAll() {
	document.getElementById("redirect").onclick = clickHandler;
}

function clickHandler() {
	if (this.toString().indexOf("gp-medical") < 0) {
		alert("You are being redirected to one of our supplier websites. Please visit us again if you wish to place an order for the product your are researching.");
	}
}

