window.onload = initAll;

function initAll(){
	document.getElementById("redirect").onclick = clickHandler;
}

function clickHandler(){
	if(this.toString().indexOf("midwestpagancouncil")<0){
		if( confirm("You are leaving the MPC website.") ){
		}
		else{
			return false;
		}
		
	}
}