// ******************* Third Party Link Alert **************** //
function link_alert(NewPage)
{
	input_box=confirm("The link you have selected will direct you to an external web site not operated by the North Dakota Office of State Tax Commissioner. This link is provided for convenience and informational purposes only. The North Dakota Office of State Tax Commissioner has no responsibility for the content of that 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);
	}
}		
	
// ******************* Email Alert **************** //	
//function email_alert(NewPage)
//{
//	input_box=confirm("Incase they want an email alert.");
//	if (input_box==true)
//	{ 
		// Output when OK is clicked
//  		window.open(NewPage);
//	}
//}			


