function speedbump(NewPage)
{
	input_box=confirm("The web site you have selected is an external site not operated by Sundance State Bank. This link is provided for convenience and informational purposes only.  Sundance State Bank assumes no responsibility for the content of this web site and does not attest to the accuracy or propriety of any information located therein.");
	if (input_box==true)
	{ 
		// Output when OK is clicked
  		window.open(NewPage);
	}
}		
