// Nav Menu Functions Start Here ~Created by K.Mo  --------------------------------

var TO = "";

// Close all submenus when necessary
function closeall() {
	document.getElementById("home").style.display = 'none';
	document.getElementById("homeMI").style.color = '#000000';

	document.getElementById("online").style.display = 'none';
	document.getElementById("onlineMI").style.color = '#000000';
	
	document.getElementById("accounts").style.display = 'none';
	document.getElementById("accountsMI").style.color = '#000000';
	
	document.getElementById("rates").style.display = 'none';	
	document.getElementById("ratesMI").style.color = '#000000';
	
	document.getElementById("cards").style.display = 'none';
	document.getElementById("cardsMI").style.color = '#000000';
	
	document.getElementById("loans").style.display = 'none';
	document.getElementById("loansMI").style.color = '#000000';
	
	document.getElementById("products_services").style.display = 'none';
	document.getElementById("products_servicesMI").style.color = '#000000';
		
	document.getElementById("businesses").style.display = 'none';
	document.getElementById("businessesMI").style.color = '#000000';
	
	document.getElementById("about_us").style.display = 'none';
	document.getElementById("about_usMI").style.color = '#000000';
	
	document.getElementById("locations").style.display = 'none';
	document.getElementById("locationsMI").style.color = '#000000';	
}

// show the submenu you want; close others
function showhide(show) {
	closeall();
	document.getElementById(show).style.display = 'inline';
	document.getElementById(show + 'MI').style.color = '#D3221A';
}

// close menu after 2.5 seconds
function hideMenu() {
	TO = window.setTimeout('closeall()', 2500);
}

// clear timeout if hovered on another link
function checkTimeout() {
		if(TO) {
		window.clearTimeout(TO);
		}
}

// End Nav Functions ---------------------------------------------------------


// Third party pop up code

function thirdparty(URL) {

if (confirm('You are leaving Prime Financial Credit Union\'s Web site.\n\nThe Web site you have selected is an external one located on another server. Prime Financial Union has no responsibility for any external Web site. It neither endorses the information, content, presentation, or accuracy nor makes any warranty, express or implied, regarding any external site.\n\nThank you for visiting Prime Financial Credit Union\'s Web site.'))
	{window.open (URL, "thirdparty")
	}
	
else {
	
	}

}

function createFlash(DATA, WIDTH, HEIGHT, PARAMNAME, PARAMVALUE) {
	  document.write('<object type="application/x-shockwave-flash" align="absmiddle" data="'+DATA+'"');
	  document.write('width="'+WIDTH+'" height="'+HEIGHT+'">');
      document.write('<param name="'+PARAMNAME+'" value="'+PARAMVALUE+'">');
      document.write('</object>');
}