// JavaScript Document

function leaveSite(siteurl) {
	if (confirm("Selecting this link will take you away from the Senior Crimestoppers Web site. Since you will be leaving the Senior Crimestoppers site, we encourage you to review the privacy policy and security offered on the site before providing any personal financial information. Senior Crimestoppers does not guaranty or assume liability for any third-party products or services.")) { 
		
		window.open (siteurl,'popup', 'toolbar=yes,menubar=yes,scrollbars=yes,titlebar=yes,status=yes,location=yes');

		}
	else {
		//do nothing
		}
}
