// JavaScript Document

function confirmation(url) {
	var answer = confirm("Your are trying to access ''"+url+"''\n\nPlease be aware that by clicking this link, you will be leaving the Blair County FCU\nwebsite and viewing content from another website. We encourage you to be\naware of all privacy practices before giving information about yourself.\n\nDo you wish to continue?\n\n")
	if (answer){
		window.open(url);
	}
	else{
	}
}