// 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 Alexandria Municipal\nEmployees Credit Union website and viewing content from another website.\n\nWe encourage you to be aware of all privacy practices before giving information\nabout yourself.\n\nDo you wish to continue?\n\n")
	if (answer){
		window.open(url);
	}
	else{
	}
}

