// -- Scripts -- ************************************


function link_alert(NewPage)
{
	input_box=confirm("The web site you have selected is an external site not operated by Montana Community Finance Corporation. This link is provided for convenience and informational purposes only. Montana Community Finance Corporation has no responsibility for the content of this web site and does not attest to the accuracy or propriety of any information located there.");
	if (input_box==true)
	{ 
		// Output when OK is clicked
  		window.open(NewPage);
	}
}		
