var undefined;var this_page = location.href;function LaunchCalc(myURL)	{	myBase = "http://gateway.fundsxpress.com/calculators/";	window.open(myBase + myURL,'','width=585,height=450,scrollbars=yes,resizable=yes');	}	function LinkAlert(URL)	{	BANK_NAME = "County Bank";	MSG =       "You are leaving "+BANK_NAME+"'s website and will be redirected to another site. ";	MSG = MSG + ""+BANK_NAME+" makes no endorsements or claims about the accuracy or content of ";	MSG = MSG + "the information contained in these sites.  The security and privacy policies on ";	MSG = MSG + "these sites may be different than those of "+BANK_NAME+".";	if (URL!=undefined) 		{		if (confirm(MSG)) window.open(URL,"_blank");		}	else return confirm(MSG);	}	function SearchSite(URL)	{	myQuery = document.f.NewQuery.value;	UpdateQuery = myQuery + " site:"+URL;	document.f.q.value = UpdateQuery;	}function CheckForm () {	//Check for a word to search	if (document.frmSiteSearch.search.value==""){		alert("Please enter at least one keyword to search");		document.frmSiteSearch.search.focus();		return false;	}		return true}delay = 5000;var image = new Array();var pointer = 0; // Where we are in the rotation	image[0] = Array("images/splash1.jpg",null);image[1] = Array("images/splash2.jpg",null);image[2] = Array("images/splash3.jpg",null);image[3] = Array("images/splash4.jpg",null);image[4] = Array("images/splash5.jpg",null);image[5] = Array("images/splash6.jpg",null);image[6] = Array("images/splash7.jpg",null);image[7] = Array("images/splash8.jpg",null);image[8] = Array("images/splash9.jpg",null);image[9] = Array("images/splash10.jpg",null);	var seed = image.length;	//RandomImage();function RandomImage() 	{ 	var core = Math.floor(Math.random()*seed)+1;	document.splash.src = image[core][0];	setTimeout('RandomImage()',delay);	}	function Rotate(pos) {	document.splash.src = image[pos][0];	pointer = pos;	pos = pos + 1;	if (pos>=seed) pos = 0;	setTimeout('Rotate('+pos+');',delay);	}	function RotateLink() {	if (image[pointer][1]!=null) HREF(image[pointer][1]);	}// This function loops through all the hyperlinks in a document and assigns// the LinkAlert function to each weather.com link as an event handler.  Don't call it// before the document is parsed and the links are all defined.  It is best// to call it from the onload event handler of a <body> tag.function confirmAllLinks() {  for(var i = 0; i < document.links.length; i++) {    this_href = document.links[i].href;	if (this_href.indexOf("weather.com")>0) {		document.links[i].href = "javascript:LinkAlert('"+this_href+"');"		//document.links[i].onclick = confirmLink;		document.links[i].target = "_self";	}  }}function init() {	confirmAllLinks();	}