
function navfix() {document.getElementById('navto').className='navfix'; document.getElementById('navsw').className='roll';}
function navnml() {document.getElementById('navto').className=''; document.getElementById('navsw').className='';}

function checkReorderDisclaimer(passedWebsite) {
	var linkDisclaimer, oWin;
	linkDisclaimer = "Please note that by clicking the \"Ok\" button, you will leave the Integrity Bank Web site and be directed to the Harland Clarke check reordering Web page.\n\r\n\rWhen leaving the Integrity Bank Web site and linking to the site provided, the privacy policy of that site applies.";
	if (confirm(linkDisclaimer)) {
		oWin = window.open(passedWebsite,"newWindow");
		if (oWin === null || typeof(oWin) === "undefined") {window.location.href = passedWebsite;}
		else {return true;}
	}
}

function mailConfirm(passedAddress) {
	var emailDisclaimer = "Please remember that e-mail is not secure against interception, and you should be cautious when sending e-mail with personal information. If your information is very sensitive, or includes personal or confidential information-such as your bank account, Debit Card or Social Security number-you may want to contact us by postal mail or telephone.";
	if (confirm(emailDisclaimer)) {
		window.location.href = passedAddress;
	}
}

function disclaimer(passedWebsite) {
	var linkDisclaimer, oWin;
	linkDisclaimer = "You are leaving the Integrity Bank website. The site you have chosen is independent from Integrity Bank. We do not control these sites and do not guarantee the accuracy, privacy, completeness, efficiency, or timeliness of the information contained therein. Be aware that the Privacy Policy of the linked website is not that of Integrity Bank.";
	if (confirm(linkDisclaimer)) {
		oWin = window.open(passedWebsite,"newWindow");
		if (oWin === null || typeof(oWin) === "undefined") {
			window.location.href = passedWebsite;
		} else {
			return true;
		}
	}
}
