function link_warn(url)
{
	var disclaimerText;
	disclaimerText = "As part of our commitment to customer service The Security State Bank of Hibbing has provided links to external websites.  External websites are sites that we have no control over.  We are not responsible for the content, information, or accuracy of external websites.  We cannot endorse nor warranty the information in any form.  By selecting to view this external site you are leaving our website.";
	if (confirm(disclaimerText))
	{
		window.open(url);
	}
}