function confirm_exit(URL)
{
	input_box = confirm("The Bankers Bank has no control over information\n" +
						"at any site hyperlinked to or from this site.\n\n" +
						"The Bankers Bank makes no representation concerning\n" +
						"and is not responsible for the quality, content,\n" +
						"nature, or reliability of any hyperlinked site and is\n" +
						"providing this hyperlink to you only as a convenience.\n" +
						"The inclusion of any hyperlink does not imply any \n" +
						"endorsement, investigation, verification, or monitoring\n" +
						"by The Bankers Bank of any information in any\n" +
						"hyperlinked site.  In no event shall The Bankers Bank\n" +
						"be responsible for your use of a hyperlinked site.");
	if (input_box==true) { 
	// redirect user if OK is clicked
	location.href=URL; 
	}
}