// JavaScript Document
window.onload = initAll;

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

function initRedirect() {
	alert("CaraVita Home Care is not responsible for the content of pages outside our site");
	window.location = this;
	return false;
}
