﻿// JScript File
function Leaving(url)
{
	if (confirm('You are leaving Williamsville State Bank\'s website and will be redirected to another site. ' + 
		      'Williamsville State Bank makes no endorsement or claims about the accuracy or content of the  ' + 
		      'information contained in these sites. The security and privacy policies on these sites may be different than Williamsville State Bank.')) {
		window.open(url);
	}
}

