function exit(myWebsiteName, myShortName){
	var choice = confirm('You are now leaving the Western Federal Credit Union\nwebsite. You understand that Western holds no responsibility\nfor information gained or experiences obtained with other\nwebsites linked from our site including the privacy and\nsecurity of the site.');
	if(choice){
		window.open(myWebsiteName);
	}//if
}//exit

function broken(myWebsiteName, myShortName){
	var choice = confirm('The search on the CO-OP ATM Network search page is currently unavailable.');
	if(choice){
		
	}//if
}//exit

// to use: <a href="javascript:onclick=exit('myWebsiteName', 'myShortName');">TEXT</a>

function popup(myWebsiteName, myShortName){
	var choice = confirm('The Financial Consultants employed by Western Federal Credit Union are registered representatives licensed to offer securities and annuities transactions offered through XCU Capital Corporation, Inc., member N.A.S.D., S.I.P.C. Insurance is offered through Focus Insurance Agency, Inc., a wholly owned subsidiary of XCU Corporation, Inc., license number in California is #0727864.\n\nInvestment and insurance products are not credit union deposits, are not insured by the NCUA or any federal government agency, are not obligations of or guaranteed by a credit union, or XCU Capital Corporation, Inc., or Focus Insurance Agency, Inc., and subject to investment risks, including possible loss of principal amount invested.');
	if(choice){
		window.open(myWebsiteName);
	}//if
}//exit

// to use: <a href="javascript:onclick=exit('myWebsiteName', 'myShortName');">TEXT</a>

function exitCheck(myWebsiteName, myShortName){
	var choice = confirm('When reordering checks online please use the following\nRouting and Transit number: 322079719\n\nYou will also need your reorder form or last book of checks to\ninput your reorder starting number.\n\nYou are now leaving the Western Federal Credit Union\nwebsite. You understand that Western holds no responsibility\nfor information gained or experiences obtained with other\nwebsites linked from our site including the privacy and\nsecurity of the site.');
	if(choice){
		window.open(myWebsiteName, myShortName);
	}//if
}//exit

// to use: <a href="javascript:onclick=exitCheck('https://www.checksconnect.com/', 'ChecksConnect');">TEXT</a>


function showStatus(msg) {
	window.status = msg
	return true
}

function goBack(page) {
	window.opener.location = page;
	window.close();
}