function open_window(url) {
 window.open(url,"win",'toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=640,height=510');
}

function externalSite(url){
 agree=confirm(     
  "You are about to leave First Community Credit Union's Web site.\n\n" +
  "Any external site listed here is not under the control of First Community Credit Union, and The Credit Union makes no representation concerning the content of this site, nor does a link serve as an endorsement by First Community Credit Union of any site. First Community CU does not represent either the third party or the member if the two enter into a transaction.\n\n" + 
  "Please note that when you exit our site, our Privacy Policy is no longer in effect.  Privacy and security policies may differ from those practiced by the Credit Union.\n\n" +
  "Thank you for visiting.  Please return when you need information about First Community CU's products and services."
 ); 
 if (agree) 
  x=window.open(url);                  
}

function externalSiteATM(url){
 alert("If the ATM is not owned by First Community, your account will be charged a $1.00 transaction fee.");
 agree=confirm(     
  "You are about to leave First Community Credit Union's Web site.\n\n" +
  "Any external site listed here is not under the control of First Community Credit Union, and The Credit Union makes no representation concerning the content of this site, nor does a link serve as an endorsement by First Community Credit Union of any site. First Community CU does not represent either the third party or the member if the two enter into a transaction.\n\n" + 
  "Please note that when you exit our site, our Privacy Policy is no longer in effect.  Privacy and security policies may differ from those practiced by the Credit Union.\n\n" +
  "Thank you for visiting.  Please return when you need information about First Community CU's products and services."
 ); 
 if (agree) 
  x=window.open(url);                  
}

function goDemo(){
	document.forms['Login'].userNumber.value = "999999999";
	document.forms['Login'].password.value = "1234";
}
