// JavaScript Document

var undefined;



function LinkAlert(URL)
	{
	MSG =       "You are leaving First Community Bank's website and will be redirected to another site.\n";
	MSG = MSG + "First Community Bank makes no endorsements or claims about the accuracy or content of \n";
	MSG = MSG + "the information contained in these sites.  The security and privacy policies on \n";
	MSG = MSG + "these sites may be different than those of First Community Bank.";
	if (URL!=undefined) 
		{
		if (confirm(MSG)) window.open(URL,"_blank");
		}
	else return confirm(MSG);
	}

function LaunchCalc(URL)
	{
	window.open (URL,'myCalculator','width=580,height=450');
	}
