// Open Window Internet Banking Links. 
	function login(link_target) {
	login_window = window.open(link_target, "Login", "toolbar=yes,menubar=yes,location=yes,status=yes,scrollbars=yes,resizable=yes,width=950,height=485,left=25,top=25");
	login_window.focus();
}


// Disclaimer Messages

	function disclaim(mailto_address){
	  message = "Notice: Because there is a small risk that information transmitted via Internet email could fall into the wrong hands, we suggest that confidential information, such as account numbers or social security numbers, not be transmitted via email. Instead, please contact us directly at your nearest bank branch. Thank you.";
	
	  alert(message);
	  window.open('mailto:' + mailto_address);
	}
	
	function disclaim2(url){
	  message = "NOTICE: The bank is not responsible for and has no control over the subject matter, content, information, or graphics of the websites that have links here. ";
	
	  if (confirm(message)){
		open_window = window.open(url, "NewWindow", "toolbar=yes,menubar=yes,location=yes,status=yes,scrollbars=yes,resizable=yes,width=950,height=485,left=25,top=25");
		
		open_window.focus();
		
	  } // End if alert
	} // End disclaim2 function
	
	function disclaim3(goHere){
	  message = "NOTICE: The bank is not responsible for and has no control over the subject matter, content, information, or graphics of the websites that have links here. Click OK to continue, or click Cancel to remain on the bank's web site.";
	
	  if (confirm(message)){
		window.open(goHere, '_blank');
		} // End if alert
	} // End disclaim3 function
	
// End Disclaimer Messages


// Misc Open Window Pages
function openPopup(url)
	{
	
	popUp = window.open(url, "Message","width=530,height=400,left=50,top=50,status=no,resizable=no,toolbar=no,scrollbars=yes,menubar=no,location=no");
	popUp.focus();
	}
 
function openCEO(url)
 	{
		popUp = window.open(url, "openCEO","width=530,height=600,left=50,top=30,status=no,resizable=no,toolbar=no,scrollbars=yes,menubar=no,location=no");
		popUp.focus();
	}
	
function openPDF(url)
 	{
		popUpPDF = window.open(url, "openPDF","width=800,height=600,left=25,top=25,status=no,resizable=yes,toolbar=no,scrollbars=yes,menubar=no,location=no");
		popUpPDF.focus();
	}
// End Misc Open Window Pages