function search() {
	document.location = "http://www.google.com/search?q=" + document.getElementById('q').value + " site:www.marketusafcu.com";
}




// Jump Menu drop-down code

function jumpPage(newLoc) {
	newPage = newLoc.options[newLoc.selectedIndex].value;
	
	if (newPage != "") {
		//window.location = newPage
		window.open(newPage,"disclaimer","");
	}
	
}

// Disclaimer for users leaving our site via a link on our site
function disclaimer() {
 	alert('You are leaving the Market USA Federal Credit Union web site and linking to a site not operated by Market USA FCU. Please be advised that Market USA FCU is not responsible for the content of third party web sites. Privacy and security policies may differ from those practiced by the Credit Union. Market USA FCU does not represent the third party or the member if the two enter into a transaction.');
 }
