/*****************************************************
*	Open Window Function
*****************************************************/

function openWin (url,width,height,extras) {
	if (width < 0 || height < 0) {
		newWin = window.open(url,"new_win",extras);
	} else {
		newWin = window.open(url,"new_win","width="+ width +",height="+ height +","+ extras);
	}
}
//open window with disclaimer
function openDisclaimer (url) {
	alert("Warning: This link is to a 3rd party site. 3rd party site links provided by Farmers-Merchants National Bank are for your convenience and direct you to information maintained by organizations other than Farmers-Merchants National Bank. We believe the information provided is trustworthy, but Farmers-Merchants cannot guarantee the accuracy of this outside information. When you link to another website, you are no longer protected by the Farmers-Merchants National Bank Privacy Policy.");
	window.open(url,'','');
}

function showDisclaimer() {
	alert("Warning: This link is to a 3rd party site. 3rd party site links provided by Farmers-Merchants National Bank are for your convenience and direct you to information maintained by organizations other than Farmers-Merchants National Bank. We believe the information provided is trustworthy, but Farmers-Merchants cannot guarantee the accuracy of this outside information. When you link to another website, you are no longer protected by the Farmers-Merchants National Bank Privacy Policy.");
	return true;
}