// JavaScript Documentvar undefined;function LinkAlert(URL,target,type) {	BANKNAME = "Colfax Banking Company";	MSG = new Array();	MSG[0] =       "You are now leaving "+BANKNAME+"'s website and will be redirected to another site. "+BANKNAME+" makes no endorsement or claims about the accuracy or content of information contained within  third party sites to which you may be going. The security and privacy policies on these sites may be different from "+BANKNAME+".";		myTarget = "_blank";	if (target!=undefined) myTarget = target;	if (URL!="" && URL!=undefined) {		if (type!="" && type!=undefined) alert(MSG[type]);		else if (confirm(MSG[0])) window.open(URL,myTarget);		}	else return(confirm(MSG[0]));	}function Calculator(URL) {	window.open ("https://gateway.fundsxpress.com/calculators/"+URL,'myCalculator','width=600,height=480,scrollbars=yes');	}function newWindow() {	window.open("","launch","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=640,height=400");	}function isValidEmail(parmValue) {	var rex = new RegExp("^[\\w\\+-]+(\\.[\\w\\+-]+)?@((\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3})\|([\\w\\+-]+\\.[a-zA-Z]{2,}))$");	var pos = parmValue.search(rex);	if (pos < 0) {		return false;		} 	else {		return true;		}	}function mail(link_string,user,domain,nickname,subject) {    var nn = "";    var s = "";    if (nickname != "") nn = nickname + " ";	else  nn = make_nickname(link_string);    if (subject != "") s = "?subject=" + subject ;    document.write(link_string.link(make_href(user,domain,nn,s)));  } function make_href(user,domain,nickname,subject) {    address = "mail" + "to" + ":" + nickname + make_address(user,domain);	if (subject!=undefined) address = address + subject;	return address;    }function make_address(user,domain) {    return "&lt;" + user + "@" + domain + "&gt;" ;    }function make_nickname(link_string) {    var names = link_string.split(",");    if (names.length == 2) {      return names[1] + " " + names[0] + " ";    } else {      return "";    }  }var position = 0;var delay = 3000;var undefined;img_list = new Array();// image list definition - Array('image_source','link_url');img_list.push(Array("images/photos/IMG_0508-mini.jpg",null));img_list.push(Array("images/photos/IMG_0346.jpg",null));img_list2 = new Array();// image list definition - Array('image_source','link_url');img_list2.push(Array("images/photos/P1010005-mini.jpg",null));//img_list2.push(Array("images/photos/MarkLeger_thebanker.jpg",null));img_list2.push(Array("images/photos/Mark-002.jpg",null));img_list3 = new Array();// image list definition - Array('image_source','link_url');img_list3.push(Array("images/photos/Branch-Pictures-001-mini.jpg",null));img_list3.push(Array("images/photos/IMG_0667.jpg",null));img_list4 = new Array();// image list definition - Array('image_source','link_url');img_list4.push(Array("images/photos/Branch-Pictures-023-mini.jpg",null));img_list4.push(Array("images/photos/IMG_1305.jpg",null));function RotateImages() {	document.getElementById("branch1").src = img_list[position][0];	document.getElementById("branch2").src = img_list2[position][0];	document.getElementById("branch3").src = img_list3[position][0];	document.getElementById("branch4").src = img_list4[position][0];	position++;	if (position==img_list.length) position = 0;	setTimeout('RotateImages()',delay);	}// This layer finds an object by ID and is cross-browser compliant.function getObj(name){ if (document.getElementById) {	   this.obj = document.getElementById(name);	   this.style = document.getElementById(name).style; } else if (document.all) {	   this.obj = document.all[name];	   this.style = document.all[name].style; } else if (document.layers) {	   if (document.layers[name])	   {	   	this.obj = document.layers[name];	   	this.style = document.layers[name];	   }	   else	   {	    this.obj = document.layers.testP.layers[name];	    this.style = document.layers.testP.layers[name];	   } }}