function search() {
	document.location = "http://www.google.com/search?q=" + document.getElementById('q').value + " site:www.marketusafcu.com";
}



// market center links

mc_links = new Array ;

mc_links[0] = "<a href='http://www.marketusafcu.com/aboutus/marketcenter.aspx#hbmenu'>PRIVILEGE PAY IS CHANGING: ACTION REQUIRED</a>";
mc_links[1] = "<a href='http://www.marketusafcu.com/info/promodocs/checkfraud.pdf'>Reduce The Risk of Check Fraud Happening To You</a>";
mc_links[2] = "<a href='http://www.marketusafcu.com/aboutus/marketcenter.aspx#taxinfo'>Tax Information in Internet Banking</a>";
mc_links[3] = "<a href='http://www.marketusafcu.com/images/promos/eDeposits.pdf'>Increased Convenience! e-Deposits Now Available!</a>";
mc_links[4] = "<a href='http://www.marketusafcu.com/info/promodocs/CEOMessage.pdf'>A Message from our President & CEO, Robert McClosky</a>";
mc_links[5] = "<a href='http://www.marketusafcu.com/info/promodocs/FreshStart.pdf'>Fresh Start Loan NO CREDIT CHECK</a>";
mc_links[6] = "<a href='http://www.marketusafcu.com/info/Identitytheft.pdf'>Should I Worry About Indentity Theft?</a>";
mc_links[7] = "<a href='http://www.marketusafcu.com/savings_checking/visacheck.aspx'>Report Lost or Stolen Cards</a>";
mc_links[8] = "<a href='http://www.marketusafcu.com/info/promodocs/LTI.pdf'>Long Term Care Insurance: A valuable option through your Credit Union</a>";
mc_links[9] = "<a href='http://www.marketusafcu.com/info/newsletters/newslettersummer10.pdf'>Check out the Summer 2010 Edition of Market News</a>";
mc_links[10] = "<a href='http://www.clickvue.com/bp/market0826.html' onClick='disclaimer();'>Click here to see a demo on how to use Internet Bill Pay</a>";
mc_links[11] = "<a href='http://www.marketusafcu.com/info/promodocs/MakeItHappen.pdf'>What Can The Equity in Your Home Do For You? </a>";
mc_links[12] = "<a href='http://www.youtube.com/watch?v=4BB04N7UoVQ' onClick='disclaimer();'>Your Funds in a Federally Insured Credit Union are Safe (Sponsored by NCUA)</a>";







function write_mc_links() {

	var startlink = 0 ;// which item in the array to show first
	var stoplink = 8; // last item in the array to show
	
	document.write("<UL id=\"mclinks\">"); //</ul>")
	for(var i=startlink; i<=stoplink; i++) { 
		document.write("<LI>" + mc_links[i] + "</LI>") ;
	}
	document.write("</UL>");

}

// 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.');
 }