/* =Disclaimers
----------------------------------------------- */
var emailDisclaimer = "Confidential, personal, or non-public information should not be transmitted via email.  For specific questions about your RJFS account, contact a representative by phone at 248-814-6580.";
function mailConfirm(passedAddress) {
	if (confirm(emailDisclaimer))
		window.location.href = passedAddress;
}

var linkDisclaimer = "You are about to leave Oxfod Bank\'s website. We do not provide, and are not responsible for, the products, services, or overall content of the linked website. We do not endorse or guarantee the products, information, or recommendations provided by the linked website, and are not liable for any failure of the products or services advertised. Our privacy and security policies do not apply to the linked website, and you should consult the privacy and security disclosures of that website for further information.";
function disclaimer(passedWebsite) {
	var oWin;
	if (confirm(linkDisclaimer)) {
		oWin = window.open(passedWebsite,"newWindow");
		if (oWin === null || typeof(oWin) === "undefined") {
			window.location.href = passedWebsite;
		} else {
			return true;
		}
	}
}
function mortDisclaimer(passedWebsite){
var oWin;
	if (confirm("You are about to leave the Oxford Bank website and enter the Mortgage Web Center.\n\nDo you wish to continue?")) {
		oWin = window.open(passedWebsite,"newWindow");
		if (oWin === null || typeof(oWin) === "undefined") {
			window.location.href = passedWebsite;
		} else {
			return true;
		}
	}
}
function disclaimer(passedWebsite)
{
	var msg = "You are about to leave the Oxford Bank website. Do you wish to continue?";
	if(confirm(msg))
	{
		window.open(passedWebsite,'NewWin','toolbar,status,resizable,location,scrollbars,menubar')
	}
}