function Q2ExternalLink(){
	if(confirm("You are leaving the Bank's web site.\n\nThe web site you have selected is an external one located on another server. The Bank has no responsibility for any external Web site. It neither endorses the information, content, presentation, or accuracy nor makes any warranty, express or implied, regarding any external site.")){
		return true;
	} else {
		return false;
	}
}

function Q2mail(){
	if(confirm("Information provided through this email link is transmitted over an unsecured connection. Please do not send information such as account numbers, account service requests or other personal information. Please contact us in person, by telephone or by mail with confidential information.")){
		return true;
	} else {
		return false;
	}
}

function CheckBoxCheck(type){
	if(type == 0){
		if(document.Q2OnlineLogin.forgot_password[0].checked){
			document.Q2OnlineLogin.forgot_password[1].checked = false;
			document.Q2OnlineLogin.password.disabled = true;
		} else {
			document.Q2OnlineLogin.password.disabled = false;
		}
	} else if(type == 1){
		if(document.Q2OnlineLogin.forgot_password[1].checked){
			document.Q2OnlineLogin.forgot_password[0].checked = false;
			document.Q2OnlineLogin.password.disabled = true;
		} else {
			document.Q2OnlineLogin.password.disabled = false;
		}
	}
}

function Q2ExternalThirdPartyLink(){
                if(confirm("The hyperlinks to other Internet sites are provided solely as a convenience to users of our Internet site. We have made a limited effort to determine that these links function properly. However, linked\n sites are not under our control, and we are not responsible for the contents of any linked site, or any link contained in a linked site. The inclusion of a link does not imply or constitute our endorsement, its ownership or management, the products or services it offers, or any advertisers or sponsors appearing on the linked web site.\n\n Do you wish to continue?"))
                {
                                return true;
                } else {
                                return false;
                }
}      
